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

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

Issue 15510002: Remove setFullScreenRendererSize and setFullScreenRendererBackgroundColor (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 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 | « no previous file | 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 981 matching lines...) Expand 10 before | Expand all | Expand 10 after
992 void webkitCancelFullScreen(); 992 void webkitCancelFullScreen();
993 993
994 void webkitWillEnterFullScreenForElement(Element*); 994 void webkitWillEnterFullScreenForElement(Element*);
995 void webkitDidEnterFullScreenForElement(Element*); 995 void webkitDidEnterFullScreenForElement(Element*);
996 void webkitWillExitFullScreenForElement(Element*); 996 void webkitWillExitFullScreenForElement(Element*);
997 void webkitDidExitFullScreenForElement(Element*); 997 void webkitDidExitFullScreenForElement(Element*);
998 998
999 void setFullScreenRenderer(RenderFullScreen*); 999 void setFullScreenRenderer(RenderFullScreen*);
1000 RenderFullScreen* fullScreenRenderer() const { return m_fullScreenRenderer; } 1000 RenderFullScreen* fullScreenRenderer() const { return m_fullScreenRenderer; }
1001 void fullScreenRendererDestroyed(); 1001 void fullScreenRendererDestroyed();
1002 1002
1003 void setFullScreenRendererSize(const IntSize&);
1004 void setFullScreenRendererBackgroundColor(Color);
1005
1006 void fullScreenChangeDelayTimerFired(Timer<Document>*); 1003 void fullScreenChangeDelayTimerFired(Timer<Document>*);
1007 bool fullScreenIsAllowedForElement(Element*) const; 1004 bool fullScreenIsAllowedForElement(Element*) const;
1008 void fullScreenElementRemoved(); 1005 void fullScreenElementRemoved();
1009 void removeFullScreenElementOfSubtree(Node*, bool amongChildrenOnly = false) ; 1006 void removeFullScreenElementOfSubtree(Node*, bool amongChildrenOnly = false) ;
1010 bool isAnimatingFullScreen() const; 1007 bool isAnimatingFullScreen() const { return m_isAnimatingFullScreen; }
1011 void setAnimatingFullScreen(bool); 1008 void setAnimatingFullScreen(bool);
1012 1009
1013 // W3C API 1010 // W3C API
1014 bool webkitFullscreenEnabled() const; 1011 bool webkitFullscreenEnabled() const;
1015 Element* webkitFullscreenElement() const { return !m_fullScreenElementStack. isEmpty() ? m_fullScreenElementStack.last().get() : 0; } 1012 Element* webkitFullscreenElement() const { return !m_fullScreenElementStack. isEmpty() ? m_fullScreenElementStack.last().get() : 0; }
1016 void webkitExitFullscreen(); 1013 void webkitExitFullscreen();
1017 1014
1018 void webkitExitPointerLock(); 1015 void webkitExitPointerLock();
1019 Element* webkitPointerLockElement() const; 1016 Element* webkitPointerLockElement() const;
1020 1017
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after
1519 trackForDebugging(); 1516 trackForDebugging();
1520 #endif 1517 #endif
1521 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); 1518 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter);
1522 } 1519 }
1523 1520
1524 Node* eventTargetNodeForDocument(Document*); 1521 Node* eventTargetNodeForDocument(Document*);
1525 1522
1526 } // namespace WebCore 1523 } // namespace WebCore
1527 1524
1528 #endif // Document_h 1525 #endif // Document_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698