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

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

Issue 2069713002: Make all gesture scrolls use customization path internally (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Gesture scrolls are now on scroll customization path Created 4 years, 6 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
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 1065 matching lines...) Expand 10 before | Expand all | Expand 10 after
1076 1076
1077 bool mayContainV0Shadow() const { return m_mayContainV0Shadow; } 1077 bool mayContainV0Shadow() const { return m_mayContainV0Shadow; }
1078 1078
1079 ShadowCascadeOrder shadowCascadeOrder() const { return m_shadowCascadeOrder; } 1079 ShadowCascadeOrder shadowCascadeOrder() const { return m_shadowCascadeOrder; }
1080 void setShadowCascadeOrder(ShadowCascadeOrder); 1080 void setShadowCascadeOrder(ShadowCascadeOrder);
1081 1081
1082 bool containsV1ShadowTree() const { return m_shadowCascadeOrder == ShadowCas cadeOrder::ShadowCascadeV1; } 1082 bool containsV1ShadowTree() const { return m_shadowCascadeOrder == ShadowCas cadeOrder::ShadowCascadeV1; }
1083 1083
1084 Element* rootScroller() const; 1084 Element* rootScroller() const;
1085 void setRootScroller(Element*, ExceptionState&); 1085 void setRootScroller(Element*, ExceptionState&);
1086 bool isEffectiveRootScroller(const Element&) const; 1086 Element* effectiveRootScroller() const;
tdresser 2016/06/23 14:34:29 Should this return a const?
bokan 2016/06/23 16:12:30 Done. Had to make Node::isSameNode take a const to
1087 1087
1088 bool isInMainFrame() const; 1088 bool isInMainFrame() const;
1089 1089
1090 protected: 1090 protected:
1091 Document(const DocumentInit&, DocumentClassFlags = DefaultDocumentClass); 1091 Document(const DocumentInit&, DocumentClassFlags = DefaultDocumentClass);
1092 1092
1093 void didUpdateSecurityOrigin() final; 1093 void didUpdateSecurityOrigin() final;
1094 1094
1095 void clearXMLVersion() { m_xmlVersion = String(); } 1095 void clearXMLVersion() { m_xmlVersion = String(); }
1096 1096
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after
1453 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); 1453 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true);
1454 1454
1455 } // namespace blink 1455 } // namespace blink
1456 1456
1457 #ifndef NDEBUG 1457 #ifndef NDEBUG
1458 // Outside the WebCore namespace for ease of invocation from gdb. 1458 // Outside the WebCore namespace for ease of invocation from gdb.
1459 CORE_EXPORT void showLiveDocumentInstances(); 1459 CORE_EXPORT void showLiveDocumentInstances();
1460 #endif 1460 #endif
1461 1461
1462 #endif // Document_h 1462 #endif // Document_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/Document.cpp » ('j') | third_party/WebKit/Source/core/dom/Element.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698