| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 | 371 |
| 372 SynchronousCompositorClient* synchronous_compositor_client_; | 372 SynchronousCompositorClient* synchronous_compositor_client_; |
| 373 | 373 |
| 374 std::unique_ptr<DelegatedFrameEvictor> frame_evictor_; | 374 std::unique_ptr<DelegatedFrameEvictor> frame_evictor_; |
| 375 | 375 |
| 376 bool observing_root_window_; | 376 bool observing_root_window_; |
| 377 | 377 |
| 378 // The last scroll offset of the view. | 378 // The last scroll offset of the view. |
| 379 gfx::Vector2dF last_scroll_offset_; | 379 gfx::Vector2dF last_scroll_offset_; |
| 380 | 380 |
| 381 float prev_top_shown_pix_; |
| 382 float prev_bottom_shown_pix_; |
| 383 |
| 381 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; | 384 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; |
| 382 | 385 |
| 383 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 386 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
| 384 }; | 387 }; |
| 385 | 388 |
| 386 } // namespace content | 389 } // namespace content |
| 387 | 390 |
| 388 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 391 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
| OLD | NEW |