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

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

Issue 396283004: Make the MediaQueryList listener an EventListener (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix review comments 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
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 891 matching lines...) Expand 10 before | Expand all | Expand 10 after
902 902
903 virtual bool isContextThread() const OVERRIDE FINAL; 903 virtual bool isContextThread() const OVERRIDE FINAL;
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 // Only one event for a target/event type combination will be dispatched per frame.
913 void enqueueUniqueAnimationFrameEvent(PassRefPtrWillBeRawPtr<Event>);
912 void enqueueMediaQueryChangeListeners(WillBeHeapVector<RefPtrWillBeMember<Me diaQueryListListener> >&); 914 void enqueueMediaQueryChangeListeners(WillBeHeapVector<RefPtrWillBeMember<Me diaQueryListListener> >&);
913 915
914 bool hasFullscreenElementStack() const { return m_hasFullscreenElementStack; } 916 bool hasFullscreenElementStack() const { return m_hasFullscreenElementStack; }
915 void setHasFullscreenElementStack() { m_hasFullscreenElementStack = true; } 917 void setHasFullscreenElementStack() { m_hasFullscreenElementStack = true; }
916 918
917 void exitPointerLock(); 919 void exitPointerLock();
918 Element* pointerLockElement() const; 920 Element* pointerLockElement() const;
919 921
920 // Used to allow element that loads data without going through a FrameLoader to delay the 'load' event. 922 // Used to allow element that loads data without going through a FrameLoader to delay the 'load' event.
921 void incrementLoadEventDelayCount() { ++m_loadEventDelayCount; } 923 void incrementLoadEventDelayCount() { ++m_loadEventDelayCount; }
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
1402 Node* eventTargetNodeForDocument(Document*); 1404 Node* eventTargetNodeForDocument(Document*);
1403 1405
1404 } // namespace blink 1406 } // namespace blink
1405 1407
1406 #ifndef NDEBUG 1408 #ifndef NDEBUG
1407 // Outside the WebCore namespace for ease of invocation from gdb. 1409 // Outside the WebCore namespace for ease of invocation from gdb.
1408 void showLiveDocumentInstances(); 1410 void showLiveDocumentInstances();
1409 #endif 1411 #endif
1410 1412
1411 #endif // Document_h 1413 #endif // Document_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698