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

Side by Side Diff: Source/WebCore/dom/Element.h

Issue 9950115: Revert 111028 - Support W3C Full Screen API proposal (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1084/
Patch Set: Created 8 years, 8 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
« no previous file with comments | « Source/WebCore/dom/Document.idl ('k') | Source/WebCore/dom/Element.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 Peter Kelly (pmk@post.com) 4 * (C) 2001 Peter Kelly (pmk@post.com)
5 * (C) 2001 Dirk Mueller (mueller@kde.org) 5 * (C) 2001 Dirk Mueller (mueller@kde.org)
6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 virtual bool wasChangedSinceLastFormControlChangeEvent() const; 371 virtual bool wasChangedSinceLastFormControlChangeEvent() const;
372 virtual void setChangedSinceLastFormControlChangeEvent(bool); 372 virtual void setChangedSinceLastFormControlChangeEvent(bool);
373 virtual void dispatchFormControlChangeEvent() { } 373 virtual void dispatchFormControlChangeEvent() { }
374 374
375 #if ENABLE(SVG) 375 #if ENABLE(SVG)
376 virtual bool childShouldCreateRenderer(const NodeRenderingContext&) const; 376 virtual bool childShouldCreateRenderer(const NodeRenderingContext&) const;
377 #endif 377 #endif
378 378
379 #if ENABLE(FULLSCREEN_API) 379 #if ENABLE(FULLSCREEN_API)
380 enum { 380 enum {
381 ALLOW_KEYBOARD_INPUT = 1 << 0, 381 ALLOW_KEYBOARD_INPUT = 1
382 LEGACY_MOZILLA_REQUEST = 1 << 1,
383 }; 382 };
384 383
385 void webkitRequestFullScreen(unsigned short flags); 384 void webkitRequestFullScreen(unsigned short flags);
386 virtual bool containsFullScreenElement() const; 385 virtual bool containsFullScreenElement() const;
387 virtual void setContainsFullScreenElement(bool); 386 virtual void setContainsFullScreenElement(bool);
388 virtual void setContainsFullScreenElementOnAncestorsCrossingFrameBoundaries( bool); 387 virtual void setContainsFullScreenElementOnAncestorsCrossingFrameBoundaries( bool);
389
390 // W3C API
391 void webkitRequestFullscreen();
392 #endif 388 #endif
393 389
394 virtual bool isSpellCheckingEnabled() const; 390 virtual bool isSpellCheckingEnabled() const;
395 391
396 PassRefPtr<WebKitAnimationList> webkitGetAnimations() const; 392 PassRefPtr<WebKitAnimationList> webkitGetAnimations() const;
397 393
398 PassRefPtr<RenderStyle> styleForRenderer(); 394 PassRefPtr<RenderStyle> styleForRenderer();
399 395
400 const AtomicString& webkitRegionOverflow() const; 396 const AtomicString& webkitRegionOverflow() const;
401 397
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
702 } 698 }
703 699
704 inline bool Node::hasClass() const 700 inline bool Node::hasClass() const
705 { 701 {
706 return isElementNode() && toElement(this)->hasClass(); 702 return isElementNode() && toElement(this)->hasClass();
707 } 703 }
708 704
709 } // namespace 705 } // namespace
710 706
711 #endif 707 #endif
OLDNEW
« no previous file with comments | « Source/WebCore/dom/Document.idl ('k') | Source/WebCore/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698