OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <queue> | 9 #include <queue> |
10 | 10 |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 size_t end_offset) OVERRIDE; | 170 size_t end_offset) OVERRIDE; |
171 | 171 |
172 // cc::DelegatedFrameResourceCollectionClient implementation. | 172 // cc::DelegatedFrameResourceCollectionClient implementation. |
173 virtual void UnusedResourcesAreAvailable() OVERRIDE; | 173 virtual void UnusedResourcesAreAvailable() OVERRIDE; |
174 | 174 |
175 // ui::GestureProviderClient implementation. | 175 // ui::GestureProviderClient implementation. |
176 virtual void OnGestureEvent(const ui::GestureEventData& gesture) OVERRIDE; | 176 virtual void OnGestureEvent(const ui::GestureEventData& gesture) OVERRIDE; |
177 | 177 |
178 // ui::WindowAndroidObserver implementation. | 178 // ui::WindowAndroidObserver implementation. |
179 virtual void OnCompositingDidCommit() OVERRIDE; | 179 virtual void OnCompositingDidCommit() OVERRIDE; |
180 virtual void OnAttachCompositor() OVERRIDE {} | 180 virtual void OnAttachCompositor() OVERRIDE; |
181 virtual void OnDetachCompositor() OVERRIDE; | 181 virtual void OnDetachCompositor() OVERRIDE; |
182 virtual void OnVSync(base::TimeTicks frame_time, | 182 virtual void OnVSync(base::TimeTicks frame_time, |
183 base::TimeDelta vsync_period) OVERRIDE; | 183 base::TimeDelta vsync_period) OVERRIDE; |
184 virtual void OnAnimate(base::TimeTicks begin_frame_time) OVERRIDE; | 184 virtual void OnAnimate(base::TimeTicks begin_frame_time) OVERRIDE; |
185 | 185 |
186 // ImageTransportFactoryAndroidObserver implementation. | 186 // ImageTransportFactoryAndroidObserver implementation. |
187 virtual void OnLostResources() OVERRIDE; | 187 virtual void OnLostResources() OVERRIDE; |
188 | 188 |
189 // DelegatedFrameEvictor implementation | 189 // DelegatedFrameEvictor implementation |
190 virtual void EvictDelegatedFrame() OVERRIDE; | 190 virtual void EvictDelegatedFrame() OVERRIDE; |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
399 scoped_ptr<LastFrameInfo> last_frame_info_; | 399 scoped_ptr<LastFrameInfo> last_frame_info_; |
400 | 400 |
401 TextSurroundingSelectionCallback text_surrounding_selection_callback_; | 401 TextSurroundingSelectionCallback text_surrounding_selection_callback_; |
402 | 402 |
403 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 403 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
404 }; | 404 }; |
405 | 405 |
406 } // namespace content | 406 } // namespace content |
407 | 407 |
408 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 408 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
OLD | NEW |