| 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 WebTextInputType textInputType() override; | 108 WebTextInputType textInputType() override; |
| 109 WebColor backgroundColor() const override; | 109 WebColor backgroundColor() const override; |
| 110 bool selectionBounds(WebRect& anchor, WebRect& focus) const override; | 110 bool selectionBounds(WebRect& anchor, WebRect& focus) const override; |
| 111 bool selectionTextDirection(WebTextDirection& start, | 111 bool selectionTextDirection(WebTextDirection& start, |
| 112 WebTextDirection& end) const override; | 112 WebTextDirection& end) const override; |
| 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 didChangeWindowResizerRect() override; | |
| 119 void didAcquirePointerLock() override; | 118 void didAcquirePointerLock() override; |
| 120 void didNotAcquirePointerLock() override; | 119 void didNotAcquirePointerLock() override; |
| 121 void didLosePointerLock() override; | 120 void didLosePointerLock() override; |
| 122 bool getCompositionCharacterBounds(WebVector<WebRect>& bounds) override; | 121 bool getCompositionCharacterBounds(WebVector<WebRect>& bounds) override; |
| 123 void applyReplacementRange(const WebRange&) override; | 122 void applyReplacementRange(const WebRange&) override; |
| 124 | 123 |
| 125 // WebFrameWidget implementation. | 124 // WebFrameWidget implementation. |
| 126 WebLocalFrameImpl* localRoot() override { return m_localRoot; } | 125 WebLocalFrameImpl* localRoot() override { return m_localRoot; } |
| 127 void setVisibilityState(WebPageVisibilityState) override; | 126 void setVisibilityState(WebPageVisibilityState) override; |
| 128 bool isTransparent() const override; | 127 bool isTransparent() const override; |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 | 261 |
| 263 DEFINE_TYPE_CASTS(WebFrameWidgetImpl, | 262 DEFINE_TYPE_CASTS(WebFrameWidgetImpl, |
| 264 WebFrameWidgetBase, | 263 WebFrameWidgetBase, |
| 265 widget, | 264 widget, |
| 266 widget->forSubframe(), | 265 widget->forSubframe(), |
| 267 widget.forSubframe()); | 266 widget.forSubframe()); |
| 268 | 267 |
| 269 } // namespace blink | 268 } // namespace blink |
| 270 | 269 |
| 271 #endif | 270 #endif |
| OLD | NEW |