Bug 1365927 - Part 1. Add missing headers and other build housekeeping. r=dvander

This commit is contained in:
Andrew Osmond 2017-06-14 11:39:59 -04:00
Родитель d40a0ac6c8
Коммит a3d11c8688
2 изменённых файлов: 2 добавлений и 1 удалений

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

@ -3,6 +3,7 @@
* 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 protocol PTexture;
include protocol PVideoDecoder;
include LayersSurfaces;
include "mozilla/dom/MediaIPCUtils.h";

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

@ -45,7 +45,7 @@ public:
bool UseAPZ() const { return mUseAPZ; }
bool UseWebRender() const { return mUseWebRender; }
bool operator==(const CompositorOptions& aOther) {
bool operator==(const CompositorOptions& aOther) const {
return mUseAPZ == aOther.mUseAPZ &&
mUseWebRender == aOther.mUseWebRender;
}