| Index: third_party/WebKit/Source/core/frame/FrameHost.h
|
| diff --git a/third_party/WebKit/Source/core/frame/FrameHost.h b/third_party/WebKit/Source/core/frame/FrameHost.h
|
| index 1160c90f612e2141793f5003c761af8976d63695..1a44fcc848d8208c7fd58c90928f9908e20799fb 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameHost.h
|
| +++ b/third_party/WebKit/Source/core/frame/FrameHost.h
|
| @@ -41,6 +41,7 @@
|
| namespace blink {
|
|
|
| class ChromeClient;
|
| +class ConsoleMessageStorage;
|
| class CustomElementReactionStack;
|
| class Deprecation;
|
| class EventHandlerRegistry;
|
| @@ -113,6 +114,9 @@ public:
|
| const AtomicString& overrideEncoding() const { return m_overrideEncoding; }
|
| void setOverrideEncoding(const AtomicString& encoding) { m_overrideEncoding = encoding; }
|
|
|
| + ConsoleMessageStorage& consoleMessageStorage();
|
| + const ConsoleMessageStorage& consoleMessageStorage() const;
|
| +
|
| CustomElementReactionStack& customElementReactionStack();
|
| const CustomElementReactionStack& customElementReactionStack() const;
|
|
|
| @@ -139,6 +143,7 @@ private:
|
| const Member<VisualViewport> m_visualViewport;
|
| const Member<OverscrollController> m_overscrollController;
|
| const Member<EventHandlerRegistry> m_eventHandlerRegistry;
|
| + const Member<ConsoleMessageStorage> m_consoleMessageStorage;
|
| const Member<CustomElementReactionStack> m_customElementReactionStack;
|
|
|
| AtomicString m_overrideEncoding;
|
|
|