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

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

Issue 1081673003: Oilpan: Prepare to move AXObjectCache to the heap (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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
« no previous file with comments | « Source/core/dom/AXObjectCache.cpp ('k') | 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 1086 matching lines...) Expand 10 before | Expand all | Expand 10 after
1097 1097
1098 void updateUseShadowTreesIfNeeded(); 1098 void updateUseShadowTreesIfNeeded();
1099 void evaluateMediaQueryListIfNeeded(); 1099 void evaluateMediaQueryListIfNeeded();
1100 1100
1101 void updateLayoutTree(StyleRecalcChange); 1101 void updateLayoutTree(StyleRecalcChange);
1102 void updateStyle(StyleRecalcChange); 1102 void updateStyle(StyleRecalcChange);
1103 void notifyLayoutTreeOfSubtreeChanges(); 1103 void notifyLayoutTreeOfSubtreeChanges();
1104 1104
1105 void detachParser(); 1105 void detachParser();
1106 1106
1107 void clearWeakMembers(Visitor*);
1108
1109 virtual bool isDocument() const override final { return true; } 1107 virtual bool isDocument() const override final { return true; }
1110 1108
1111 virtual void childrenChanged(const ChildrenChange&) override; 1109 virtual void childrenChanged(const ChildrenChange&) override;
1112 1110
1113 virtual String nodeName() const override final; 1111 virtual String nodeName() const override final;
1114 virtual NodeType nodeType() const override final; 1112 virtual NodeType nodeType() const override final;
1115 virtual bool childTypeAllowed(NodeType) const override final; 1113 virtual bool childTypeAllowed(NodeType) const override final;
1116 virtual PassRefPtrWillBeRawPtr<Node> cloneNode(bool deep = true) override fi nal; 1114 virtual PassRefPtrWillBeRawPtr<Node> cloneNode(bool deep = true) override fi nal;
1117 void cloneDataFromDocument(const Document&); 1115 void cloneDataFromDocument(const Document&);
1118 1116
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
1256 bool m_updateFocusAppearanceRestoresSelection; 1254 bool m_updateFocusAppearanceRestoresSelection;
1257 bool m_containsPlugins; 1255 bool m_containsPlugins;
1258 1256
1259 // http://www.whatwg.org/specs/web-apps/current-work/#ignore-destructive-wri tes-counter 1257 // http://www.whatwg.org/specs/web-apps/current-work/#ignore-destructive-wri tes-counter
1260 unsigned m_ignoreDestructiveWriteCount; 1258 unsigned m_ignoreDestructiveWriteCount;
1261 1259
1262 String m_title; 1260 String m_title;
1263 String m_rawTitle; 1261 String m_rawTitle;
1264 RefPtrWillBeMember<Element> m_titleElement; 1262 RefPtrWillBeMember<Element> m_titleElement;
1265 1263
1266 OwnPtr<AXObjectCache> m_axObjectCache; 1264 OwnPtrWillBeMember<AXObjectCache> m_axObjectCache;
1267 OwnPtrWillBeMember<DocumentMarkerController> m_markers; 1265 OwnPtrWillBeMember<DocumentMarkerController> m_markers;
1268 1266
1269 Timer<Document> m_updateFocusAppearanceTimer; 1267 Timer<Document> m_updateFocusAppearanceTimer;
1270 1268
1271 RawPtrWillBeMember<Element> m_cssTarget; 1269 RawPtrWillBeMember<Element> m_cssTarget;
1272 1270
1273 LoadEventProgress m_loadEventProgress; 1271 LoadEventProgress m_loadEventProgress;
1274 1272
1275 double m_startTime; 1273 double m_startTime;
1276 1274
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
1442 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); 1440 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true);
1443 1441
1444 } // namespace blink 1442 } // namespace blink
1445 1443
1446 #ifndef NDEBUG 1444 #ifndef NDEBUG
1447 // Outside the WebCore namespace for ease of invocation from gdb. 1445 // Outside the WebCore namespace for ease of invocation from gdb.
1448 CORE_EXPORT void showLiveDocumentInstances(); 1446 CORE_EXPORT void showLiveDocumentInstances();
1449 #endif 1447 #endif
1450 1448
1451 #endif // Document_h 1449 #endif // Document_h
OLDNEW
« no previous file with comments | « Source/core/dom/AXObjectCache.cpp ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698