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 isAcceleratedCompositingActive() const override; | 113 bool isAcceleratedCompositingActive() const override; |
114 void willCloseLayerTreeView() override; | 114 void willCloseLayerTreeView() override; |
115 void didChangeWindowResizerRect() override; | 115 void didChangeWindowResizerRect() override; |
116 void didAcquirePointerLock() override; | 116 void didAcquirePointerLock() override; |
117 void didNotAcquirePointerLock() override; | 117 void didNotAcquirePointerLock() override; |
118 void didLosePointerLock() override; | 118 void didLosePointerLock() override; |
119 bool getCompositionCharacterBounds(WebVector<WebRect>& bounds) override; | 119 bool getCompositionCharacterBounds(WebVector<WebRect>& bounds) override; |
120 void applyReplacementRange(int start, int length) override; | 120 void applyReplacementRange(int start, int length) override; |
121 | 121 |
122 // WebFrameWidget implementation. | 122 // WebFrameWidget implementation. |
123 WebLocalFrameImpl* localRoot() override { return m_localRoot; } | |
124 void setVisibilityState(WebPageVisibilityState) override; | 123 void setVisibilityState(WebPageVisibilityState) override; |
125 bool isTransparent() const override; | 124 bool isTransparent() const override; |
126 void setIsTransparent(bool) override; | 125 void setIsTransparent(bool) override; |
127 void setBaseBackgroundColor(WebColor) override; | 126 void setBaseBackgroundColor(WebColor) override; |
128 | 127 |
129 Frame* focusedCoreFrame() const; | 128 Frame* focusedCoreFrame() const; |
130 | 129 |
131 // Returns the currently focused Element or null if no element has focus. | 130 // Returns the currently focused Element or null if no element has focus. |
132 Element* focusedElement() const; | 131 Element* focusedElement() const; |
133 | 132 |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 WebColor m_baseBackgroundColor; | 253 WebColor m_baseBackgroundColor; |
255 | 254 |
256 SelfKeepAlive<WebFrameWidgetImpl> m_selfKeepAlive; | 255 SelfKeepAlive<WebFrameWidgetImpl> m_selfKeepAlive; |
257 }; | 256 }; |
258 | 257 |
259 DEFINE_TYPE_CASTS(WebFrameWidgetImpl, WebFrameWidgetBase, widget, widget->forSub
frame(), widget.forSubframe()); | 258 DEFINE_TYPE_CASTS(WebFrameWidgetImpl, WebFrameWidgetBase, widget, widget->forSub
frame(), widget.forSubframe()); |
260 | 259 |
261 } // namespace blink | 260 } // namespace blink |
262 | 261 |
263 #endif | 262 #endif |
OLD | NEW |