| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 bool isSelectionAnchorFirst() const override; | 108 bool isSelectionAnchorFirst() const override; |
| 109 WebRange caretOrSelectionRange() override; | 109 WebRange caretOrSelectionRange() override; |
| 110 void setTextDirection(WebTextDirection) override; | 110 void setTextDirection(WebTextDirection) override; |
| 111 bool isAcceleratedCompositingActive() const override; | 111 bool isAcceleratedCompositingActive() const override; |
| 112 void willCloseLayerTreeView() override; | 112 void willCloseLayerTreeView() override; |
| 113 void didAcquirePointerLock() override; | 113 void didAcquirePointerLock() override; |
| 114 void didNotAcquirePointerLock() override; | 114 void didNotAcquirePointerLock() override; |
| 115 void didLosePointerLock() override; | 115 void didLosePointerLock() override; |
| 116 bool getCompositionCharacterBounds(WebVector<WebRect>& bounds) override; | 116 bool getCompositionCharacterBounds(WebVector<WebRect>& bounds) override; |
| 117 void applyReplacementRange(const WebRange&) override; | 117 void applyReplacementRange(const WebRange&) override; |
| 118 void setRemoteViewportIntersection(const WebRect&) override; |
| 118 | 119 |
| 119 // WebFrameWidget implementation. | 120 // WebFrameWidget implementation. |
| 120 WebLocalFrameImpl* localRoot() const override { return m_localRoot; } | 121 WebLocalFrameImpl* localRoot() const override { return m_localRoot; } |
| 121 void setVisibilityState(WebPageVisibilityState) override; | 122 void setVisibilityState(WebPageVisibilityState) override; |
| 122 bool isTransparent() const override; | 123 bool isTransparent() const override; |
| 123 void setIsTransparent(bool) override; | 124 void setIsTransparent(bool) override; |
| 124 void setBaseBackgroundColor(WebColor) override; | 125 void setBaseBackgroundColor(WebColor) override; |
| 125 WebInputMethodControllerImpl* getActiveWebInputMethodController() | 126 WebInputMethodControllerImpl* getActiveWebInputMethodController() |
| 126 const override; | 127 const override; |
| 127 | 128 |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 | 241 |
| 241 DEFINE_TYPE_CASTS(WebFrameWidgetImpl, | 242 DEFINE_TYPE_CASTS(WebFrameWidgetImpl, |
| 242 WebFrameWidgetBase, | 243 WebFrameWidgetBase, |
| 243 widget, | 244 widget, |
| 244 widget->forSubframe(), | 245 widget->forSubframe(), |
| 245 widget.forSubframe()); | 246 widget.forSubframe()); |
| 246 | 247 |
| 247 } // namespace blink | 248 } // namespace blink |
| 248 | 249 |
| 249 #endif | 250 #endif |
| OLD | NEW |