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

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

Issue 2738703003: Move FrameHost::m_consoleMessageStorage to Page (Closed)
Patch Set: Rebase Created 3 years, 9 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 | « third_party/WebKit/Source/core/frame/FrameHost.cpp ('k') | third_party/WebKit/Source/core/page/Page.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/page/Page.h
diff --git a/third_party/WebKit/Source/core/page/Page.h b/third_party/WebKit/Source/core/page/Page.h
index 0f319dbba28d1937b4978bbf2121cec86760bd48..97a9f8c29fd26a24d43f945994f59a9046a1d7e3 100644
--- a/third_party/WebKit/Source/core/page/Page.h
+++ b/third_party/WebKit/Source/core/page/Page.h
@@ -67,6 +67,7 @@ class PointerLockController;
class ScopedPageSuspender;
class ScrollingCoordinator;
class Settings;
+class ConsoleMessageStorage;
class SpellCheckerClient;
class TopDocumentRootScrollerController;
class ValidationMessageClient;
@@ -192,6 +193,9 @@ class CORE_EXPORT Page final : public GarbageCollectedFinalized<Page>,
BrowserControls& browserControls();
const BrowserControls& browserControls() const;
+ ConsoleMessageStorage& consoleMessageStorage();
+ const ConsoleMessageStorage& consoleMessageStorage() const;
+
EventHandlerRegistry& eventHandlerRegistry();
const EventHandlerRegistry& eventHandlerRegistry() const;
@@ -286,6 +290,7 @@ class CORE_EXPORT Page final : public GarbageCollectedFinalized<Page>,
const Member<PointerLockController> m_pointerLockController;
Member<ScrollingCoordinator> m_scrollingCoordinator;
const Member<BrowserControls> m_browserControls;
+ const Member<ConsoleMessageStorage> m_consoleMessageStorage;
const Member<EventHandlerRegistry> m_eventHandlerRegistry;
const Member<TopDocumentRootScrollerController>
m_globalRootScrollerController;
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameHost.cpp ('k') | third_party/WebKit/Source/core/page/Page.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698