| 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::Point point) OVERRIDE; | 183 int acc_obj_id, gfx::Point point) OVERRIDE; |
| 184 virtual void AccessibilitySetTextSelection( | 184 virtual void AccessibilitySetTextSelection( |
| 185 int acc_obj_id, int start_offset, int end_offset) OVERRIDE; | 185 int acc_obj_id, int start_offset, int end_offset) OVERRIDE; |
| 186 virtual gfx::Point GetLastTouchEventLocation() const OVERRIDE; | 186 virtual gfx::Point GetLastTouchEventLocation() const OVERRIDE; |
| 187 virtual void FatalAccessibilityTreeError() OVERRIDE; | 187 virtual void FatalAccessibilityTreeError() OVERRIDE; |
| 188 | 188 |
| 189 // cc::DelegatedFrameResourceCollectionClient implementation. | 189 // cc::DelegatedFrameResourceCollectionClient implementation. |
| 190 virtual void UnusedResourcesAreAvailable() OVERRIDE; | 190 virtual void UnusedResourcesAreAvailable() OVERRIDE; |
| 191 | 191 |
| 192 // ui::WindowAndroidObserver implementation. | 192 // ui::WindowAndroidObserver implementation. |
| 193 virtual void OnCompositingDidCommit() OVERRIDE; | 193 virtual void OnCompositingDidCommit(Compositor* compositor) OVERRIDE; |
| 194 virtual void OnAttachCompositor() OVERRIDE {} | 194 virtual void OnAttachCompositor() OVERRIDE {} |
| 195 virtual void OnDetachCompositor() OVERRIDE; | 195 virtual void OnDetachCompositor() OVERRIDE; |
| 196 | 196 |
| 197 // ImageTransportFactoryAndroidObserver implementation. | 197 // ImageTransportFactoryAndroidObserver implementation. |
| 198 virtual void OnLostResources() OVERRIDE; | 198 virtual void OnLostResources() OVERRIDE; |
| 199 | 199 |
| 200 // Non-virtual methods | 200 // Non-virtual methods |
| 201 void SetContentViewCore(ContentViewCoreImpl* content_view_core); | 201 void SetContentViewCore(ContentViewCoreImpl* content_view_core); |
| 202 SkColor GetCachedBackgroundColor() const; | 202 SkColor GetCachedBackgroundColor() const; |
| 203 void SendKeyEvent(const NativeWebKeyboardEvent& event); | 203 void SendKeyEvent(const NativeWebKeyboardEvent& event); |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 gfx::Size default_size_; | 335 gfx::Size default_size_; |
| 336 | 336 |
| 337 const bool using_synchronous_compositor_; | 337 const bool using_synchronous_compositor_; |
| 338 | 338 |
| 339 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 339 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
| 340 }; | 340 }; |
| 341 | 341 |
| 342 } // namespace content | 342 } // namespace content |
| 343 | 343 |
| 344 #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 |