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

Unified Diff: Source/core/frame/LocalFrame.h

Issue 299353004: Oilpan: move editing objects to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Make test wrapper class finalized Created 6 years, 7 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/editing/markup.cpp ('k') | Source/core/frame/LocalFrame.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/LocalFrame.h
diff --git a/Source/core/frame/LocalFrame.h b/Source/core/frame/LocalFrame.h
index 4f2df691af686e3d6b7640c24a39cbc6b56687aa..ad1cd62f41b614ec920a4220ae90ef70728264d9 100644
--- a/Source/core/frame/LocalFrame.h
+++ b/Source/core/frame/LocalFrame.h
@@ -161,9 +161,9 @@ namespace WebCore {
RefPtr<FrameView> m_view;
OwnPtr<ScriptController> m_script;
- const OwnPtr<Editor> m_editor;
+ const OwnPtrWillBePersistent<Editor> m_editor;
const OwnPtr<SpellChecker> m_spellChecker;
- const OwnPtr<FrameSelection> m_selection;
+ const OwnPtrWillBePersistent<FrameSelection> m_selection;
const OwnPtr<EventHandler> m_eventHandler;
const OwnPtr<FrameConsole> m_console;
OwnPtr<InputMethodController> m_inputMethodController;
« no previous file with comments | « Source/core/editing/markup.cpp ('k') | Source/core/frame/LocalFrame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698