Bug 1425277 - p3: fix misplaced dependent header. r=jya To address compile error when AppleVTDeocder.cpp is moved to another unified source file or in non-unified builds.

Differential Revision: https://phabricator.services.mozilla.com/D7559

--HG--
extra : moz-landing-system : lando
This commit is contained in:
John Lin 2018-11-26 18:27:49 +00:00
Родитель 0ea8bb4a7a
Коммит b3b4fa64cc
2 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -7,7 +7,7 @@
#include "AppleATDecoder.h"
#include "AppleDecoderModule.h"
#include "AppleVTDecoder.h"
#include "MacIOSurfaceImage.h"
#include "mozilla/gfx/MacIOSurface.h"
#include "mozilla/DebugOnly.h"
#include "mozilla/Logging.h"
#include "mozilla/gfx/gfxVars.h"

Просмотреть файл

@ -17,6 +17,7 @@
#include "mozilla/Logging.h"
#include "VideoUtils.h"
#include "gfxPlatform.h"
#include "MacIOSurfaceImage.h"
#define LOG(...) DDMOZ_LOG(sPDMLog, mozilla::LogLevel::Debug, __VA_ARGS__)
#define LOGEX(_this, ...) \
@ -24,6 +25,8 @@
namespace mozilla {
using namespace layers;
AppleVTDecoder::AppleVTDecoder(const VideoInfo& aConfig, TaskQueue* aTaskQueue,
layers::ImageContainer* aImageContainer,
CreateDecoderParams::OptionSet aOptions)