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

Unified Diff: Source/core/page/Page.h

Issue 334153003: Oilpan: move page's ValidationMessageClient to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: trace() mixing as per GC plugin requirements Created 6 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 | « no previous file | Source/core/page/Page.cpp » ('j') | Source/core/page/ValidationMessageClient.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/Page.h
diff --git a/Source/core/page/Page.h b/Source/core/page/Page.h
index f3bb8c7ffafdae3c76822ceff1568b43f5cbe9cf..a34e7cf6732344c867ee4bae5e14361d09357b5c 100644
--- a/Source/core/page/Page.h
+++ b/Source/core/page/Page.h
@@ -156,7 +156,7 @@ public:
InspectorController& inspectorController() const { return *m_inspectorController; }
PointerLockController& pointerLockController() const { return *m_pointerLockController; }
ValidationMessageClient& validationMessageClient() const { return *m_validationMessageClient; }
- void setValidationMessageClient(PassOwnPtr<ValidationMessageClient>);
+ void setValidationMessageClient(PassOwnPtrWillBeRawPtr<ValidationMessageClient>);
ScrollingCoordinator* scrollingCoordinator();
@@ -267,7 +267,7 @@ private:
EditorClient* const m_editorClient;
SpellCheckerClient* const m_spellCheckerClient;
StorageClient* m_storageClient;
- OwnPtr<ValidationMessageClient> m_validationMessageClient;
+ OwnPtrWillBeMember<ValidationMessageClient> m_validationMessageClient;
UseCounter m_useCounter;
« no previous file with comments | « no previous file | Source/core/page/Page.cpp » ('j') | Source/core/page/ValidationMessageClient.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698