Index: third_party/WebKit/Source/core/frame/Frame.h |
diff --git a/third_party/WebKit/Source/core/frame/Frame.h b/third_party/WebKit/Source/core/frame/Frame.h |
index 5f0aec9661d5f574e2c77278ab873dd9aee6c008..ba5e83ec3c74373ebf099c4c7e0c0a2c61fe3085 100644 |
--- a/third_party/WebKit/Source/core/frame/Frame.h |
+++ b/third_party/WebKit/Source/core/frame/Frame.h |
@@ -54,7 +54,7 @@ class Page; |
class SecurityContext; |
class Settings; |
class WindowProxy; |
-class WindowProxyManager; |
+class WindowProxyManagerBase; |
struct FrameLoadRequest; |
enum class FrameDetachType { Remove, Swap }; |
@@ -143,7 +143,7 @@ class CORE_EXPORT Frame : public GarbageCollectedFinalized<Frame> { |
void setIsLoading(bool isLoading) { m_isLoading = isLoading; } |
bool isLoading() const { return m_isLoading; } |
- virtual WindowProxyManager* getWindowProxyManager() const = 0; |
+ virtual WindowProxyManagerBase* getWindowProxyManager() const = 0; |
virtual void didChangeVisibilityState(); |