| 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 e73f3f5375d3eea5b9610332403b8dee6e9dbaef..247e50055d49e75985f80b322907d7b9e426d773 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameHost.h
|
| +++ b/third_party/WebKit/Source/core/frame/FrameHost.h
|
| @@ -43,6 +43,7 @@ namespace blink {
|
|
|
| class ChromeClient;
|
| class ConsoleMessageStorage;
|
| +class CustomElementReactionStack;
|
| class Deprecation;
|
| class EventHandlerRegistry;
|
| class OverscrollController;
|
| @@ -121,6 +122,9 @@ public:
|
| ConsoleMessageStorage& consoleMessageStorage();
|
| const ConsoleMessageStorage& consoleMessageStorage() const;
|
|
|
| + CustomElementReactionStack& customElementReactionStack();
|
| + const CustomElementReactionStack& customElementReactionStack() const;
|
| +
|
| DECLARE_TRACE();
|
|
|
| // Don't allow more than a certain number of frames in a page.
|
| @@ -146,6 +150,7 @@ private:
|
| const Member<OverscrollController> m_overscrollController;
|
| const Member<EventHandlerRegistry> m_eventHandlerRegistry;
|
| const Member<ConsoleMessageStorage> m_consoleMessageStorage;
|
| + const Member<CustomElementReactionStack> m_customElementReactionStack;
|
|
|
| AtomicString m_overrideEncoding;
|
| int m_subframeCount;
|
|
|