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

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
Index: Source/core/dom/Document.h
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
index 6ac39d3a5c3f6c87567ba660f75f360767efae1c..4219ba1cb9bdf5f337cf5ca5b1883c72fb2950d7 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;

Powered by Google App Engine
This is Rietveld 408576698