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

Side by Side Diff: third_party/WebKit/Source/core/dom/Document.h

Issue 2107233002: Reland "Implement FullScreen using top layer." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: new untested DCHECK Created 4 years, 5 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
9 * Copyright (C) 2011 Google Inc. All rights reserved. 9 * Copyright (C) 2011 Google Inc. All rights reserved.
10 * 10 *
(...skipping 1331 matching lines...) Expand 10 before | Expand all | Expand 10 after
1342 bool m_sawElementsInKnownNamespaces; 1342 bool m_sawElementsInKnownNamespaces;
1343 bool m_isSrcdocDocument; 1343 bool m_isSrcdocDocument;
1344 bool m_isMobileDocument; 1344 bool m_isMobileDocument;
1345 1345
1346 LayoutView* m_layoutView; 1346 LayoutView* m_layoutView;
1347 1347
1348 WeakMember<Document> m_contextDocument; 1348 WeakMember<Document> m_contextDocument;
1349 1349
1350 bool m_hasFullscreenSupplement; // For early return in Fullscreen::fromIfExi sts() 1350 bool m_hasFullscreenSupplement; // For early return in Fullscreen::fromIfExi sts()
1351 1351
1352 // The last element in |m_topLayerElements| is topmost in the top layer
1353 // stack and is thus the one that will be visually on top.
1352 HeapVector<Member<Element>> m_topLayerElements; 1354 HeapVector<Member<Element>> m_topLayerElements;
1353 1355
1354 int m_loadEventDelayCount; 1356 int m_loadEventDelayCount;
1355 Timer<Document> m_loadEventDelayTimer; 1357 Timer<Document> m_loadEventDelayTimer;
1356 Timer<Document> m_pluginLoadingTimer; 1358 Timer<Document> m_pluginLoadingTimer;
1357 1359
1358 ViewportDescription m_viewportDescription; 1360 ViewportDescription m_viewportDescription;
1359 ViewportDescription m_legacyViewportDescription; 1361 ViewportDescription m_legacyViewportDescription;
1360 Length m_viewportDefaultMinWidth; 1362 Length m_viewportDefaultMinWidth;
1361 1363
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
1456 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); 1458 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true);
1457 1459
1458 } // namespace blink 1460 } // namespace blink
1459 1461
1460 #ifndef NDEBUG 1462 #ifndef NDEBUG
1461 // Outside the WebCore namespace for ease of invocation from gdb. 1463 // Outside the WebCore namespace for ease of invocation from gdb.
1462 CORE_EXPORT void showLiveDocumentInstances(); 1464 CORE_EXPORT void showLiveDocumentInstances();
1463 #endif 1465 #endif
1464 1466
1465 #endif // Document_h 1467 #endif // Document_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp ('k') | third_party/WebKit/Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698