Chromium Code Reviews| Index: Source/core/page/Page.h |
| diff --git a/Source/core/page/Page.h b/Source/core/page/Page.h |
| index 34c94e75edb0fdf3d01a925c64a2171cd344076b..9f77153bf9b6556e8bf8d4470271265e8f6e0e46 100644 |
| --- a/Source/core/page/Page.h |
| +++ b/Source/core/page/Page.h |
| @@ -27,6 +27,7 @@ |
| #include "core/frame/UseCounter.h" |
| #include "core/page/PageAnimator.h" |
| #include "core/page/PageVisibilityState.h" |
| +#include "core/wawwa/ProxyMap.h" |
| #include "platform/LifecycleContext.h" |
| #include "platform/Supplementable.h" |
| #include "platform/geometry/LayoutRect.h" |
| @@ -308,6 +309,9 @@ private: |
| // A pointer to all the interfaces provided to in-process Frames for this Page. |
| // FIXME: Most of the members of Page should move onto FrameHost. |
| OwnPtrWillBeMember<FrameHost> m_frameHost; |
| + |
| +public: |
| + RefPtr<ProxyMap> m_ProxyMap; |
|
dstockwell
2014/08/29 01:05:43
This name is a bit vague, isn't this animation spe
nainar1
2014/08/29 06:01:39
No this is the overall ProxyMap with all RemotePla
|
| }; |
| } // namespace blink |