OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be found | 2 // Use of this source code is governed by a BSD-style license that can be found |
3 // in the LICENSE file. | 3 // in the LICENSE file. |
4 | 4 |
5 #ifndef WebViewFrameWidget_h | 5 #ifndef WebViewFrameWidget_h |
6 #define WebViewFrameWidget_h | 6 #define WebViewFrameWidget_h |
7 | 7 |
8 #include "platform/heap/Handle.h" | 8 #include "platform/heap/Handle.h" |
9 #include "public/web/WebFrameWidget.h" | 9 #include "public/web/WebFrameWidget.h" |
10 #include "wtf/Noncopyable.h" | 10 #include "wtf/Noncopyable.h" |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 bool isAcceleratedCompositingActive() const override; | 82 bool isAcceleratedCompositingActive() const override; |
83 bool isWebView() const override { return false; } | 83 bool isWebView() const override { return false; } |
84 bool isPagePopup() const override { return false; } | 84 bool isPagePopup() const override { return false; } |
85 void willCloseLayerTreeView() override; | 85 void willCloseLayerTreeView() override; |
86 void didAcquirePointerLock() override; | 86 void didAcquirePointerLock() override; |
87 void didNotAcquirePointerLock() override; | 87 void didNotAcquirePointerLock() override; |
88 void didLosePointerLock() override; | 88 void didLosePointerLock() override; |
89 void didChangeWindowResizerRect() override; | 89 void didChangeWindowResizerRect() override; |
90 WebColor backgroundColor() const override; | 90 WebColor backgroundColor() const override; |
91 WebPagePopup* pagePopup() const override; | 91 WebPagePopup* pagePopup() const override; |
92 void setTopControlsHeight(float height, bool topControlsShrinkLayoutSize) ov
erride; | |
93 void updateTopControlsState(WebTopControlsState constraints, WebTopControlsS
tate current, bool animate) override; | 92 void updateTopControlsState(WebTopControlsState constraints, WebTopControlsS
tate current, bool animate) override; |
94 void setVisibilityState(WebPageVisibilityState, bool isInitialState) overrid
e; | 93 void setVisibilityState(WebPageVisibilityState, bool isInitialState) overrid
e; |
95 bool isTransparent() const override; | 94 bool isTransparent() const override; |
96 void setIsTransparent(bool) override; | 95 void setIsTransparent(bool) override; |
97 void setBaseBackgroundColor(WebColor) override; | 96 void setBaseBackgroundColor(WebColor) override; |
98 bool forSubframe() const { return false; } | 97 bool forSubframe() const { return false; } |
99 void scheduleAnimation() override; | 98 void scheduleAnimation() override; |
100 | 99 |
101 private: | 100 private: |
102 WebWidgetClient* m_client; | 101 WebWidgetClient* m_client; |
103 RefPtr<WebViewImpl> m_webView; | 102 RefPtr<WebViewImpl> m_webView; |
104 Persistent<WebLocalFrameImpl> m_mainFrame; | 103 Persistent<WebLocalFrameImpl> m_mainFrame; |
105 }; | 104 }; |
106 | 105 |
107 } // namespace blink | 106 } // namespace blink |
108 | 107 |
109 #endif // WebViewFrameWidget_h | 108 #endif // WebViewFrameWidget_h |
OLD | NEW |