OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2014 Google Inc. All rights reserved. | 2 * Copyright (C) 2014 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 bool isSelectionAnchorFirst() const override; | 109 bool isSelectionAnchorFirst() const override; |
110 WebRange caretOrSelectionRange() override; | 110 WebRange caretOrSelectionRange() override; |
111 void setTextDirection(WebTextDirection) override; | 111 void setTextDirection(WebTextDirection) override; |
112 bool isAcceleratedCompositingActive() const override; | 112 bool isAcceleratedCompositingActive() const override; |
113 void willCloseLayerTreeView() override; | 113 void willCloseLayerTreeView() override; |
114 void didAcquirePointerLock() override; | 114 void didAcquirePointerLock() override; |
115 void didNotAcquirePointerLock() override; | 115 void didNotAcquirePointerLock() override; |
116 void didLosePointerLock() override; | 116 void didLosePointerLock() override; |
117 bool getCompositionCharacterBounds(WebVector<WebRect>& bounds) override; | 117 bool getCompositionCharacterBounds(WebVector<WebRect>& bounds) override; |
118 void applyReplacementRange(const WebRange&) override; | 118 void applyReplacementRange(const WebRange&) override; |
| 119 void setRemoteViewportIntersection(const WebRect&) override; |
119 | 120 |
120 // WebFrameWidget implementation. | 121 // WebFrameWidget implementation. |
121 WebLocalFrameImpl* localRoot() const override { return m_localRoot; } | 122 WebLocalFrameImpl* localRoot() const override { return m_localRoot; } |
122 void setVisibilityState(WebPageVisibilityState) override; | 123 void setVisibilityState(WebPageVisibilityState) override; |
123 bool isTransparent() const override; | 124 bool isTransparent() const override; |
124 void setIsTransparent(bool) override; | 125 void setIsTransparent(bool) override; |
125 void setBaseBackgroundColor(WebColor) override; | 126 void setBaseBackgroundColor(WebColor) override; |
126 WebInputMethodControllerImpl* getActiveWebInputMethodController() | 127 WebInputMethodControllerImpl* getActiveWebInputMethodController() |
127 const override; | 128 const override; |
128 | 129 |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 | 239 |
239 DEFINE_TYPE_CASTS(WebFrameWidgetImpl, | 240 DEFINE_TYPE_CASTS(WebFrameWidgetImpl, |
240 WebFrameWidgetBase, | 241 WebFrameWidgetBase, |
241 widget, | 242 widget, |
242 widget->forSubframe(), | 243 widget->forSubframe(), |
243 widget.forSubframe()); | 244 widget.forSubframe()); |
244 | 245 |
245 } // namespace blink | 246 } // namespace blink |
246 | 247 |
247 #endif | 248 #endif |
OLD | NEW |