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