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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/dom/AXObjectCache.cpp ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Document.h
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
index f38e4d3abcfe6fe70d2a00464e62b0aa09b4232d..04062a67195203dfbaec487bc94c18369a9d7436 100644
--- a/Source/core/dom/Document.h
+++ b/Source/core/dom/Document.h
@@ -1104,8 +1104,6 @@ private:
void detachParser();
- void clearWeakMembers(Visitor*);
-
virtual bool isDocument() const override final { return true; }
virtual void childrenChanged(const ChildrenChange&) override;
@@ -1263,7 +1261,7 @@ private:
String m_rawTitle;
RefPtrWillBeMember<Element> m_titleElement;
- OwnPtr<AXObjectCache> m_axObjectCache;
+ OwnPtrWillBeMember<AXObjectCache> m_axObjectCache;
OwnPtrWillBeMember<DocumentMarkerController> m_markers;
Timer<Document> m_updateFocusAppearanceTimer;
« 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