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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 void AttachLayers(); | 268 void AttachLayers(); |
269 void RemoveLayers(); | 269 void RemoveLayers(); |
270 | 270 |
271 void UpdateAnimationSize(const cc::CompositorFrameMetadata& frame_metadata); | 271 void UpdateAnimationSize(const cc::CompositorFrameMetadata& frame_metadata); |
272 | 272 |
273 // Called after async screenshot task completes. Scales and crops the result | 273 // Called after async screenshot task completes. Scales and crops the result |
274 // of the copy. | 274 // of the copy. |
275 static void PrepareTextureCopyOutputResult( | 275 static void PrepareTextureCopyOutputResult( |
276 const gfx::Size& dst_size_in_pixel, | 276 const gfx::Size& dst_size_in_pixel, |
277 bool readback_config_rgb565, | 277 bool readback_config_rgb565, |
| 278 const base::TimeTicks& start_time, |
278 const base::Callback<void(bool, const SkBitmap&)>& callback, | 279 const base::Callback<void(bool, const SkBitmap&)>& callback, |
279 scoped_ptr<cc::CopyOutputResult> result); | 280 scoped_ptr<cc::CopyOutputResult> result); |
280 static void PrepareBitmapCopyOutputResult( | 281 static void PrepareBitmapCopyOutputResult( |
281 const gfx::Size& dst_size_in_pixel, | 282 const gfx::Size& dst_size_in_pixel, |
| 283 const base::TimeTicks& start_time, |
282 const base::Callback<void(bool, const SkBitmap&)>& callback, | 284 const base::Callback<void(bool, const SkBitmap&)>& callback, |
283 scoped_ptr<cc::CopyOutputResult> result); | 285 scoped_ptr<cc::CopyOutputResult> result); |
284 | 286 |
285 // DevTools ScreenCast support for Android WebView. | 287 // DevTools ScreenCast support for Android WebView. |
286 void SynchronousCopyContents( | 288 void SynchronousCopyContents( |
287 const gfx::Rect& src_subrect_in_pixel, | 289 const gfx::Rect& src_subrect_in_pixel, |
288 const gfx::Size& dst_size_in_pixel, | 290 const gfx::Size& dst_size_in_pixel, |
289 const base::Callback<void(bool, const SkBitmap&)>& callback); | 291 const base::Callback<void(bool, const SkBitmap&)>& callback); |
290 | 292 |
291 // The model object. | 293 // The model object. |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
354 const bool using_synchronous_compositor_; | 356 const bool using_synchronous_compositor_; |
355 | 357 |
356 scoped_ptr<DelegatedFrameEvictor> frame_evictor_; | 358 scoped_ptr<DelegatedFrameEvictor> frame_evictor_; |
357 | 359 |
358 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 360 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
359 }; | 361 }; |
360 | 362 |
361 } // namespace content | 363 } // namespace content |
362 | 364 |
363 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 365 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
OLD | NEW |