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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 WebTextInputType textInputType() override; | 107 WebTextInputType textInputType() override; |
108 WebColor backgroundColor() const override; | 108 WebColor backgroundColor() const override; |
109 bool selectionBounds(WebRect& anchor, WebRect& focus) const override; | 109 bool selectionBounds(WebRect& anchor, WebRect& focus) const override; |
110 bool selectionTextDirection(WebTextDirection& start, WebTextDirection& end)
const override; | 110 bool selectionTextDirection(WebTextDirection& start, WebTextDirection& end)
const override; |
111 bool isSelectionAnchorFirst() const override; | 111 bool isSelectionAnchorFirst() const override; |
112 bool caretOrSelectionRange(size_t* location, size_t* length) override; | 112 bool caretOrSelectionRange(size_t* location, size_t* length) override; |
113 void setTextDirection(WebTextDirection) override; | 113 void setTextDirection(WebTextDirection) override; |
114 bool isAcceleratedCompositingActive() const override; | 114 bool isAcceleratedCompositingActive() const override; |
115 void willCloseLayerTreeView() override; | 115 void willCloseLayerTreeView() override; |
116 void didChangeWindowResizerRect() override; | 116 void didChangeWindowResizerRect() override; |
| 117 void didAcquirePointerLock() override; |
| 118 void didNotAcquirePointerLock() override; |
| 119 void didLosePointerLock() override; |
117 | 120 |
118 // WebFrameWidget implementation. | 121 // WebFrameWidget implementation. |
119 void setVisibilityState(WebPageVisibilityState, bool) override; | 122 void setVisibilityState(WebPageVisibilityState, bool) override; |
120 bool isTransparent() const override; | 123 bool isTransparent() const override; |
121 void setIsTransparent(bool) override; | 124 void setIsTransparent(bool) override; |
122 void setBaseBackgroundColor(WebColor) override; | 125 void setBaseBackgroundColor(WebColor) override; |
123 void scheduleAnimation() override; | 126 void scheduleAnimation() override; |
124 | 127 |
125 WebWidgetClient* client() const override { return m_client; } | 128 WebWidgetClient* client() const override { return m_client; } |
126 | 129 |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 WebColor m_baseBackgroundColor; | 225 WebColor m_baseBackgroundColor; |
223 | 226 |
224 SelfKeepAlive<WebFrameWidgetImpl> m_selfKeepAlive; | 227 SelfKeepAlive<WebFrameWidgetImpl> m_selfKeepAlive; |
225 }; | 228 }; |
226 | 229 |
227 DEFINE_TYPE_CASTS(WebFrameWidgetImpl, WebFrameWidget, widget, widget->forSubfram
e(), widget.forSubframe()); | 230 DEFINE_TYPE_CASTS(WebFrameWidgetImpl, WebFrameWidget, widget, widget->forSubfram
e(), widget.forSubframe()); |
228 | 231 |
229 } // namespace blink | 232 } // namespace blink |
230 | 233 |
231 #endif | 234 #endif |
OLD | NEW |