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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 bool isSelectionAnchorFirst() const override; | 113 bool isSelectionAnchorFirst() const override; |
114 WebRange caretOrSelectionRange() override; | 114 WebRange caretOrSelectionRange() override; |
115 void setTextDirection(WebTextDirection) override; | 115 void setTextDirection(WebTextDirection) override; |
116 bool isAcceleratedCompositingActive() const override; | 116 bool isAcceleratedCompositingActive() const override; |
117 void willCloseLayerTreeView() override; | 117 void willCloseLayerTreeView() override; |
118 void didAcquirePointerLock() override; | 118 void didAcquirePointerLock() override; |
119 void didNotAcquirePointerLock() override; | 119 void didNotAcquirePointerLock() override; |
120 void didLosePointerLock() override; | 120 void didLosePointerLock() override; |
121 bool getCompositionCharacterBounds(WebVector<WebRect>& bounds) override; | 121 bool getCompositionCharacterBounds(WebVector<WebRect>& bounds) override; |
122 void applyReplacementRange(const WebRange&) override; | 122 void applyReplacementRange(const WebRange&) override; |
| 123 void setRemoteViewportIntersection(const WebRect&) override; |
123 | 124 |
124 // WebFrameWidget implementation. | 125 // WebFrameWidget implementation. |
125 WebLocalFrameImpl* localRoot() override { return m_localRoot; } | 126 WebLocalFrameImpl* localRoot() override { return m_localRoot; } |
126 void setVisibilityState(WebPageVisibilityState) override; | 127 void setVisibilityState(WebPageVisibilityState) override; |
127 bool isTransparent() const override; | 128 bool isTransparent() const override; |
128 void setIsTransparent(bool) override; | 129 void setIsTransparent(bool) override; |
129 void setBaseBackgroundColor(WebColor) override; | 130 void setBaseBackgroundColor(WebColor) override; |
130 | 131 |
131 Frame* focusedCoreFrame() const; | 132 Frame* focusedCoreFrame() const; |
132 | 133 |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
246 | 247 |
247 DEFINE_TYPE_CASTS(WebFrameWidgetImpl, | 248 DEFINE_TYPE_CASTS(WebFrameWidgetImpl, |
248 WebFrameWidgetBase, | 249 WebFrameWidgetBase, |
249 widget, | 250 widget, |
250 widget->forSubframe(), | 251 widget->forSubframe(), |
251 widget.forSubframe()); | 252 widget.forSubframe()); |
252 | 253 |
253 } // namespace blink | 254 } // namespace blink |
254 | 255 |
255 #endif | 256 #endif |
OLD | NEW |