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

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

Issue 1291903003: Oilpan: Move ChromeClient classes into Oilpan heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix a raw reference in InspectorOverlayImpl.cpp. Created 5 years, 4 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/loader/EmptyClients.cpp ('k') | Source/core/svg/graphics/SVGImage.h » ('j') | no next file with comments »
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 783f306e6c1a6852dbc936d5fd93b5774afe8384..bfce8a7a1d2515d9af1994096f9bcc9ac3c65061 100644
--- a/Source/core/page/Page.h
+++ b/Source/core/page/Page.h
@@ -76,13 +76,14 @@ public:
static void platformColorsChanged();
// It is up to the platform to ensure that non-null clients are provided where required.
- struct CORE_EXPORT PageClients {
- WTF_MAKE_NONCOPYABLE(PageClients); WTF_MAKE_FAST_ALLOCATED(PageClients);
+ struct CORE_EXPORT PageClients final {
+ STACK_ALLOCATED();
+ WTF_MAKE_NONCOPYABLE(PageClients);
public:
PageClients();
~PageClients();
- ChromeClient* chromeClient;
+ RawPtrWillBeMember<ChromeClient> chromeClient;
ContextMenuClient* contextMenuClient;
EditorClient* editorClient;
DragClient* dragClient;
« no previous file with comments | « Source/core/loader/EmptyClients.cpp ('k') | Source/core/svg/graphics/SVGImage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698