| 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 "web/WebFrameWidgetBase.h" | 9 #include "web/WebFrameWidgetBase.h" |
| 10 #include "web/WebLocalFrameImpl.h" | 10 #include "web/WebLocalFrameImpl.h" |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 bool isSelectionAnchorFirst() const override; | 80 bool isSelectionAnchorFirst() const override; |
| 81 WebRange caretOrSelectionRange() override; | 81 WebRange caretOrSelectionRange() override; |
| 82 void setTextDirection(WebTextDirection) override; | 82 void setTextDirection(WebTextDirection) override; |
| 83 bool isAcceleratedCompositingActive() const override; | 83 bool isAcceleratedCompositingActive() const override; |
| 84 bool isWebView() const override { return false; } | 84 bool isWebView() const override { return false; } |
| 85 bool isPagePopup() const override { return false; } | 85 bool isPagePopup() const override { return false; } |
| 86 void willCloseLayerTreeView() override; | 86 void willCloseLayerTreeView() override; |
| 87 void didAcquirePointerLock() override; | 87 void didAcquirePointerLock() override; |
| 88 void didNotAcquirePointerLock() override; | 88 void didNotAcquirePointerLock() override; |
| 89 void didLosePointerLock() override; | 89 void didLosePointerLock() override; |
| 90 void didChangeWindowResizerRect() override; | |
| 91 WebColor backgroundColor() const override; | 90 WebColor backgroundColor() const override; |
| 92 WebPagePopup* pagePopup() const override; | 91 WebPagePopup* pagePopup() const override; |
| 93 bool getCompositionCharacterBounds(WebVector<WebRect>& bounds) override; | 92 bool getCompositionCharacterBounds(WebVector<WebRect>& bounds) override; |
| 94 void applyReplacementRange(const WebRange&) override; | 93 void applyReplacementRange(const WebRange&) override; |
| 95 void updateTopControlsState(WebTopControlsState constraints, | 94 void updateTopControlsState(WebTopControlsState constraints, |
| 96 WebTopControlsState current, | 95 WebTopControlsState current, |
| 97 bool animate) override; | 96 bool animate) override; |
| 98 void setVisibilityState(WebPageVisibilityState) override; | 97 void setVisibilityState(WebPageVisibilityState) override; |
| 99 bool isTransparent() const override; | 98 bool isTransparent() const override; |
| 100 void setIsTransparent(bool) override; | 99 void setIsTransparent(bool) override; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 114 | 113 |
| 115 private: | 114 private: |
| 116 WebWidgetClient* m_client; | 115 WebWidgetClient* m_client; |
| 117 RefPtr<WebViewImpl> m_webView; | 116 RefPtr<WebViewImpl> m_webView; |
| 118 Persistent<WebLocalFrameImpl> m_mainFrame; | 117 Persistent<WebLocalFrameImpl> m_mainFrame; |
| 119 }; | 118 }; |
| 120 | 119 |
| 121 } // namespace blink | 120 } // namespace blink |
| 122 | 121 |
| 123 #endif // WebViewFrameWidget_h | 122 #endif // WebViewFrameWidget_h |
| OLD | NEW |