Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(327)

Unified Diff: Source/core/dom/FullscreenElementStack.h

Issue 460983002: Oilpan: fix build after r180052. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/FullscreenElementStack.h
diff --git a/Source/core/dom/FullscreenElementStack.h b/Source/core/dom/FullscreenElementStack.h
index 41dd652cefb6f5996cfd9ae3c5031e131d77418d..6a77a3ad3b21c6f696dc8dcd2ee6be3eea138f2d 100644
--- a/Source/core/dom/FullscreenElementStack.h
+++ b/Source/core/dom/FullscreenElementStack.h
@@ -36,6 +36,7 @@
#include "platform/geometry/LayoutRect.h"
#include "wtf/Deque.h"
#include "wtf/RefPtr.h"
+#include "wtf/TypeTraits.h"
#include "wtf/Vector.h"
namespace blink {
@@ -140,4 +141,9 @@ inline FullscreenElementStack* FullscreenElementStack::fromIfExists(Document& do
} // namespace blink
+// Needed by the HeapVector<> element stack.
+template<>struct WTF::IsPod<blink::FullscreenElementStack::RequestType> {
+ static const bool value = true;
+};
+
#endif // FullscreenElementStack_h
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698