author | Morris Tseng <mtseng@mozilla.com> |
Mon, 08 Jun 2015 02:28:00 -0400 | |
changeset 247818 | 3b2f55f9839cd24781322aeda63024321b39e108 |
parent 247817 | a208fbe870ff8305ce0b2a9da4a7894ba4034cbf |
child 247819 | 54761fbe1fc328d94b2efeeb083cfb738c581a3b |
push id | 60814 |
push user | kwierso@gmail.com |
push date | Wed, 10 Jun 2015 02:29:27 +0000 |
treeherder | mozilla-inbound@bc32a90612e5 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | nical |
bugs | 1172405 |
milestone | 41.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
dom/workers/ServiceWorkerContainer.cpp | file | annotate | diff | comparison | revisions | |
gfx/layers/YCbCrImageDataSerializer.cpp | file | annotate | diff | comparison | revisions |
--- a/dom/workers/ServiceWorkerContainer.cpp +++ b/dom/workers/ServiceWorkerContainer.cpp @@ -3,16 +3,17 @@ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "ServiceWorkerContainer.h" #include "nsIDocument.h" #include "nsIServiceWorkerManager.h" +#include "nsNetUtil.h" #include "nsPIDOMWindow.h" #include "mozilla/Services.h" #include "nsCycleCollectionParticipant.h" #include "nsServiceManagerUtils.h" #include "mozilla/dom/Promise.h" #include "mozilla/dom/ServiceWorkerContainerBinding.h"
--- a/gfx/layers/YCbCrImageDataSerializer.cpp +++ b/gfx/layers/YCbCrImageDataSerializer.cpp @@ -5,16 +5,17 @@ #include "mozilla/layers/YCbCrImageDataSerializer.h" #include <string.h> // for memcpy #include "mozilla/gfx/2D.h" // for DataSourceSurface, Factory #include "mozilla/gfx/BaseSize.h" // for BaseSize #include "mozilla/gfx/Logging.h" // for gfxDebug #include "mozilla/gfx/Types.h" #include "mozilla/mozalloc.h" // for operator delete +#include "nsDebug.h" // for NS_WARN_IF #include "yuv_convert.h" // for ConvertYCbCrToRGB32, etc #define MOZ_ALIGN_WORD(x) (((x) + 3) & ~3) namespace mozilla { using namespace gfx;