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

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

Issue 449133003: Move Web-facing fullscreen APIs to DocumentFullscreen and ElementFullscreen (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/core.gypi ('k') | Source/core/dom/Document.idl » ('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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 DEFINE_ATTRIBUTE_EVENT_LISTENER(pointerlockerror); 257 DEFINE_ATTRIBUTE_EVENT_LISTENER(pointerlockerror);
258 DEFINE_ATTRIBUTE_EVENT_LISTENER(readystatechange); 258 DEFINE_ATTRIBUTE_EVENT_LISTENER(readystatechange);
259 DEFINE_ATTRIBUTE_EVENT_LISTENER(search); 259 DEFINE_ATTRIBUTE_EVENT_LISTENER(search);
260 DEFINE_ATTRIBUTE_EVENT_LISTENER(securitypolicyviolation); 260 DEFINE_ATTRIBUTE_EVENT_LISTENER(securitypolicyviolation);
261 DEFINE_ATTRIBUTE_EVENT_LISTENER(selectionchange); 261 DEFINE_ATTRIBUTE_EVENT_LISTENER(selectionchange);
262 DEFINE_ATTRIBUTE_EVENT_LISTENER(selectstart); 262 DEFINE_ATTRIBUTE_EVENT_LISTENER(selectstart);
263 DEFINE_ATTRIBUTE_EVENT_LISTENER(touchcancel); 263 DEFINE_ATTRIBUTE_EVENT_LISTENER(touchcancel);
264 DEFINE_ATTRIBUTE_EVENT_LISTENER(touchend); 264 DEFINE_ATTRIBUTE_EVENT_LISTENER(touchend);
265 DEFINE_ATTRIBUTE_EVENT_LISTENER(touchmove); 265 DEFINE_ATTRIBUTE_EVENT_LISTENER(touchmove);
266 DEFINE_ATTRIBUTE_EVENT_LISTENER(touchstart); 266 DEFINE_ATTRIBUTE_EVENT_LISTENER(touchstart);
267 DEFINE_ATTRIBUTE_EVENT_LISTENER(webkitfullscreenchange);
268 DEFINE_ATTRIBUTE_EVENT_LISTENER(webkitfullscreenerror);
269 DEFINE_ATTRIBUTE_EVENT_LISTENER(wheel); 267 DEFINE_ATTRIBUTE_EVENT_LISTENER(wheel);
270 268
271 bool shouldMergeWithLegacyDescription(ViewportDescription::Type); 269 bool shouldMergeWithLegacyDescription(ViewportDescription::Type);
272 bool shouldOverrideLegacyDescription(ViewportDescription::Type); 270 bool shouldOverrideLegacyDescription(ViewportDescription::Type);
273 void setViewportDescription(const ViewportDescription&); 271 void setViewportDescription(const ViewportDescription&);
274 const ViewportDescription& viewportDescription() const { return m_viewportDe scription; } 272 const ViewportDescription& viewportDescription() const { return m_viewportDe scription; }
275 Length viewportDefaultMinWidth() const { return m_viewportDefaultMinWidth; } 273 Length viewportDefaultMinWidth() const { return m_viewportDefaultMinWidth; }
276 274
277 bool hasLegacyViewportTag() const { return m_legacyViewportDescription.isLeg acyViewportType(); } 275 bool hasLegacyViewportTag() const { return m_legacyViewportDescription.isLeg acyViewportType(); }
278 276
(...skipping 1145 matching lines...) Expand 10 before | Expand all | Expand 10 after
1424 Node* eventTargetNodeForDocument(Document*); 1422 Node* eventTargetNodeForDocument(Document*);
1425 1423
1426 } // namespace blink 1424 } // namespace blink
1427 1425
1428 #ifndef NDEBUG 1426 #ifndef NDEBUG
1429 // Outside the WebCore namespace for ease of invocation from gdb. 1427 // Outside the WebCore namespace for ease of invocation from gdb.
1430 void showLiveDocumentInstances(); 1428 void showLiveDocumentInstances();
1431 #endif 1429 #endif
1432 1430
1433 #endif // Document_h 1431 #endif // Document_h
OLDNEW
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/dom/Document.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698