| 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&, const WebPoint&) 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 | 258 |
| 258 DEFINE_TYPE_CASTS(WebFrameWidgetImpl, | 259 DEFINE_TYPE_CASTS(WebFrameWidgetImpl, |
| 259 WebFrameWidgetBase, | 260 WebFrameWidgetBase, |
| 260 widget, | 261 widget, |
| 261 widget->forSubframe(), | 262 widget->forSubframe(), |
| 262 widget.forSubframe()); | 263 widget.forSubframe()); |
| 263 | 264 |
| 264 } // namespace blink | 265 } // namespace blink |
| 265 | 266 |
| 266 #endif | 267 #endif |
| OLD | NEW |