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

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

Issue 1015943002: Remove Document.getOverrideStyle() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 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 691 matching lines...) Expand 10 before | Expand all | Expand 10 after
702 bool hasListenerType(ListenerType listenerType) const { return (m_listenerTy pes & listenerType); } 702 bool hasListenerType(ListenerType listenerType) const { return (m_listenerTy pes & listenerType); }
703 void addListenerTypeIfNeeded(const AtomicString& eventType); 703 void addListenerTypeIfNeeded(const AtomicString& eventType);
704 704
705 bool hasMutationObserversOfType(MutationObserver::MutationType type) const 705 bool hasMutationObserversOfType(MutationObserver::MutationType type) const
706 { 706 {
707 return m_mutationObserverTypes & type; 707 return m_mutationObserverTypes & type;
708 } 708 }
709 bool hasMutationObservers() const { return m_mutationObserverTypes; } 709 bool hasMutationObservers() const { return m_mutationObserverTypes; }
710 void addMutationObserverTypes(MutationObserverOptions types) { m_mutationObs erverTypes |= types; } 710 void addMutationObserverTypes(MutationObserverOptions types) { m_mutationObs erverTypes |= types; }
711 711
712 CSSStyleDeclaration* getOverrideStyle() { return 0; }
713
714 /** 712 /**
715 * Handles a HTTP header equivalent set by a meta tag using <meta http-equiv ="..." content="...">. This is called 713 * Handles a HTTP header equivalent set by a meta tag using <meta http-equiv ="..." content="...">. This is called
716 * when a meta tag is encountered during document parsing, and also when a s cript dynamically changes or adds a meta 714 * when a meta tag is encountered during document parsing, and also when a s cript dynamically changes or adds a meta
717 * tag. This enables scripts to use meta tags to perform refreshes and set e xpiry dates in addition to them being 715 * tag. This enables scripts to use meta tags to perform refreshes and set e xpiry dates in addition to them being
718 * specified in a HTML file. 716 * specified in a HTML file.
719 * 717 *
720 * @param equiv The http header name (value of the meta tag's "equiv" attrib ute) 718 * @param equiv The http header name (value of the meta tag's "equiv" attrib ute)
721 * @param content The header value (value of the meta tag's "content" attrib ute) 719 * @param content The header value (value of the meta tag's "content" attrib ute)
722 * @param inDocumentHeadElement Is the element in the document's <head> elem ent? 720 * @param inDocumentHeadElement Is the element in the document's <head> elem ent?
723 */ 721 */
(...skipping 717 matching lines...) Expand 10 before | Expand all | Expand 10 after
1441 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); 1439 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true);
1442 1440
1443 } // namespace blink 1441 } // namespace blink
1444 1442
1445 #ifndef NDEBUG 1443 #ifndef NDEBUG
1446 // Outside the WebCore namespace for ease of invocation from gdb. 1444 // Outside the WebCore namespace for ease of invocation from gdb.
1447 void showLiveDocumentInstances(); 1445 void showLiveDocumentInstances();
1448 #endif 1446 #endif
1449 1447
1450 #endif // Document_h 1448 #endif // Document_h
OLDNEW
« no previous file with comments | « LayoutTests/webexposed/global-interface-listing-expected.txt ('k') | Source/core/dom/Document.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698