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

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

Issue 476763004: Rename FullscreenElementStack to just Fullscreen (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/css/resolver/SharedStyleFinder.cpp ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 893 matching lines...) Expand 10 before | Expand all | Expand 10 after
904 virtual bool isJSExecutionForbidden() const OVERRIDE FINAL { return false; } 904 virtual bool isJSExecutionForbidden() const OVERRIDE FINAL { return false; }
905 905
906 bool containsValidityStyleRules() const { return m_containsValidityStyleRule s; } 906 bool containsValidityStyleRules() const { return m_containsValidityStyleRule s; }
907 void setContainsValidityStyleRules() { m_containsValidityStyleRules = true; } 907 void setContainsValidityStyleRules() { m_containsValidityStyleRules = true; }
908 908
909 void enqueueResizeEvent(); 909 void enqueueResizeEvent();
910 void enqueueScrollEventForNode(Node*); 910 void enqueueScrollEventForNode(Node*);
911 void enqueueAnimationFrameEvent(PassRefPtrWillBeRawPtr<Event>); 911 void enqueueAnimationFrameEvent(PassRefPtrWillBeRawPtr<Event>);
912 void enqueueMediaQueryChangeListeners(WillBeHeapVector<RefPtrWillBeMember<Me diaQueryListListener> >&); 912 void enqueueMediaQueryChangeListeners(WillBeHeapVector<RefPtrWillBeMember<Me diaQueryListListener> >&);
913 913
914 bool hasFullscreenElementStack() const { return m_hasFullscreenElementStack; } 914 bool hasFullscreenSupplement() const { return m_hasFullscreenSupplement; }
915 void setHasFullscreenElementStack() { m_hasFullscreenElementStack = true; } 915 void setHasFullscreenSupplement() { m_hasFullscreenSupplement = true; }
916 916
917 void exitPointerLock(); 917 void exitPointerLock();
918 Element* pointerLockElement() const; 918 Element* pointerLockElement() const;
919 919
920 // Used to allow element that loads data without going through a FrameLoader to delay the 'load' event. 920 // Used to allow element that loads data without going through a FrameLoader to delay the 'load' event.
921 void incrementLoadEventDelayCount() { ++m_loadEventDelayCount; } 921 void incrementLoadEventDelayCount() { ++m_loadEventDelayCount; }
922 void decrementLoadEventDelayCount(); 922 void decrementLoadEventDelayCount();
923 void checkLoadEventSoon(); 923 void checkLoadEventSoon();
924 bool isDelayingLoadEvent(); 924 bool isDelayingLoadEvent();
925 void loadPluginsSoon(); 925 void loadPluginsSoon();
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
1297 bool m_isMobileDocument; 1297 bool m_isMobileDocument;
1298 bool m_isTransitionDocument; 1298 bool m_isTransitionDocument;
1299 1299
1300 RenderView* m_renderView; 1300 RenderView* m_renderView;
1301 1301
1302 #if !ENABLE(OILPAN) 1302 #if !ENABLE(OILPAN)
1303 WeakPtrFactory<Document> m_weakFactory; 1303 WeakPtrFactory<Document> m_weakFactory;
1304 #endif 1304 #endif
1305 WeakPtrWillBeWeakMember<Document> m_contextDocument; 1305 WeakPtrWillBeWeakMember<Document> m_contextDocument;
1306 1306
1307 bool m_hasFullscreenElementStack; // For early return in FullscreenElementSt ack::fromIfExists() 1307 bool m_hasFullscreenSupplement; // For early return in Fullscreen::fromIfExi sts()
1308 1308
1309 WillBeHeapVector<RefPtrWillBeMember<Element> > m_topLayerElements; 1309 WillBeHeapVector<RefPtrWillBeMember<Element> > m_topLayerElements;
1310 1310
1311 int m_loadEventDelayCount; 1311 int m_loadEventDelayCount;
1312 Timer<Document> m_loadEventDelayTimer; 1312 Timer<Document> m_loadEventDelayTimer;
1313 Timer<Document> m_pluginLoadingTimer; 1313 Timer<Document> m_pluginLoadingTimer;
1314 1314
1315 ViewportDescription m_viewportDescription; 1315 ViewportDescription m_viewportDescription;
1316 ViewportDescription m_legacyViewportDescription; 1316 ViewportDescription m_legacyViewportDescription;
1317 Length m_viewportDefaultMinWidth; 1317 Length m_viewportDefaultMinWidth;
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
1402 Node* eventTargetNodeForDocument(Document*); 1402 Node* eventTargetNodeForDocument(Document*);
1403 1403
1404 } // namespace blink 1404 } // namespace blink
1405 1405
1406 #ifndef NDEBUG 1406 #ifndef NDEBUG
1407 // Outside the WebCore namespace for ease of invocation from gdb. 1407 // Outside the WebCore namespace for ease of invocation from gdb.
1408 void showLiveDocumentInstances(); 1408 void showLiveDocumentInstances();
1409 #endif 1409 #endif
1410 1410
1411 #endif // Document_h 1411 #endif // Document_h
OLDNEW
« no previous file with comments | « Source/core/css/resolver/SharedStyleFinder.cpp ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698