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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 int acc_obj_id, gfx::Rect subfocus) OVERRIDE; | 183 int acc_obj_id, gfx::Rect subfocus) OVERRIDE; |
184 virtual void AccessibilityScrollToPoint( | 184 virtual void AccessibilityScrollToPoint( |
185 int acc_obj_id, gfx::Point point) OVERRIDE; | 185 int acc_obj_id, gfx::Point point) OVERRIDE; |
186 virtual void AccessibilitySetTextSelection( | 186 virtual void AccessibilitySetTextSelection( |
187 int acc_obj_id, int start_offset, int end_offset) OVERRIDE; | 187 int acc_obj_id, int start_offset, int end_offset) OVERRIDE; |
188 virtual gfx::Point GetLastTouchEventLocation() const OVERRIDE; | 188 virtual gfx::Point GetLastTouchEventLocation() const OVERRIDE; |
189 virtual void FatalAccessibilityTreeError() OVERRIDE; | 189 virtual void FatalAccessibilityTreeError() OVERRIDE; |
190 | 190 |
191 // cc::TextureLayerClient implementation. | 191 // cc::TextureLayerClient implementation. |
192 virtual unsigned PrepareTexture() OVERRIDE; | 192 virtual unsigned PrepareTexture() OVERRIDE; |
193 virtual WebKit::WebGraphicsContext3D* Context3d() OVERRIDE; | |
194 virtual bool PrepareTextureMailbox( | 193 virtual bool PrepareTextureMailbox( |
195 cc::TextureMailbox* mailbox, | 194 cc::TextureMailbox* mailbox, |
196 scoped_ptr<cc::SingleReleaseCallback>* release_callback, | 195 scoped_ptr<cc::SingleReleaseCallback>* release_callback, |
197 bool use_shared_memory) OVERRIDE; | 196 bool use_shared_memory) OVERRIDE; |
198 | 197 |
199 // cc::DelegatedRendererLayerClient implementation. | 198 // cc::DelegatedRendererLayerClient implementation. |
200 virtual void DidCommitFrameData() OVERRIDE; | 199 virtual void DidCommitFrameData() OVERRIDE; |
201 | 200 |
202 // cc::DelegatedFrameResourceCollectionClient implementation. | 201 // cc::DelegatedFrameResourceCollectionClient implementation. |
203 virtual void UnusedResourcesAreAvailable() OVERRIDE; | 202 virtual void UnusedResourcesAreAvailable() OVERRIDE; |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 scoped_ptr<OverscrollGlow> overscroll_effect_; | 335 scoped_ptr<OverscrollGlow> overscroll_effect_; |
337 | 336 |
338 bool flush_input_requested_; | 337 bool flush_input_requested_; |
339 | 338 |
340 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 339 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
341 }; | 340 }; |
342 | 341 |
343 } // namespace content | 342 } // namespace content |
344 | 343 |
345 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 344 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
OLD | NEW |