Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(409)

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_android.h

Issue 133363004: content_gl_tests should skip RGB565 test if the prior detection of format support fails. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Initialize variables before operating getintegerv Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 virtual void AcceleratedSurfacePostSubBuffer( 131 virtual void AcceleratedSurfacePostSubBuffer(
132 const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params& params, 132 const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params& params,
133 int gpu_host_id) OVERRIDE; 133 int gpu_host_id) OVERRIDE;
134 virtual void AcceleratedSurfaceSuspend() OVERRIDE; 134 virtual void AcceleratedSurfaceSuspend() OVERRIDE;
135 virtual void AcceleratedSurfaceRelease() OVERRIDE; 135 virtual void AcceleratedSurfaceRelease() OVERRIDE;
136 virtual bool HasAcceleratedSurface(const gfx::Size& desired_size) OVERRIDE; 136 virtual bool HasAcceleratedSurface(const gfx::Size& desired_size) OVERRIDE;
137 virtual void SetBackground(const SkBitmap& background) OVERRIDE; 137 virtual void SetBackground(const SkBitmap& background) OVERRIDE;
138 virtual void CopyFromCompositingSurface( 138 virtual void CopyFromCompositingSurface(
139 const gfx::Rect& src_subrect, 139 const gfx::Rect& src_subrect,
140 const gfx::Size& dst_size, 140 const gfx::Size& dst_size,
141 const base::Callback<void(bool, const SkBitmap&)>& callback) OVERRIDE; 141 const base::Callback<void(bool, const SkBitmap&)>& callback,
142 bool readback_config_rgb565) OVERRIDE;
142 virtual void CopyFromCompositingSurfaceToVideoFrame( 143 virtual void CopyFromCompositingSurfaceToVideoFrame(
143 const gfx::Rect& src_subrect, 144 const gfx::Rect& src_subrect,
144 const scoped_refptr<media::VideoFrame>& target, 145 const scoped_refptr<media::VideoFrame>& target,
145 const base::Callback<void(bool)>& callback) OVERRIDE; 146 const base::Callback<void(bool)>& callback) OVERRIDE;
146 virtual bool CanCopyToVideoFrame() const OVERRIDE; 147 virtual bool CanCopyToVideoFrame() const OVERRIDE;
147 virtual void GetScreenInfo(blink::WebScreenInfo* results) OVERRIDE; 148 virtual void GetScreenInfo(blink::WebScreenInfo* results) OVERRIDE;
148 virtual gfx::Rect GetBoundsInRootWindow() OVERRIDE; 149 virtual gfx::Rect GetBoundsInRootWindow() OVERRIDE;
149 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; 150 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE;
150 virtual void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch, 151 virtual void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch,
151 InputEventAckState ack_result) OVERRIDE; 152 InputEventAckState ack_result) OVERRIDE;
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 267
267 void AttachLayers(); 268 void AttachLayers();
268 void RemoveLayers(); 269 void RemoveLayers();
269 270
270 void UpdateAnimationSize(const cc::CompositorFrameMetadata& frame_metadata); 271 void UpdateAnimationSize(const cc::CompositorFrameMetadata& frame_metadata);
271 272
272 // Called after async screenshot task completes. Scales and crops the result 273 // Called after async screenshot task completes. Scales and crops the result
273 // of the copy. 274 // of the copy.
274 static void PrepareTextureCopyOutputResult( 275 static void PrepareTextureCopyOutputResult(
275 const gfx::Size& dst_size_in_pixel, 276 const gfx::Size& dst_size_in_pixel,
277 bool readback_config_rgb565,
276 const base::Callback<void(bool, const SkBitmap&)>& callback, 278 const base::Callback<void(bool, const SkBitmap&)>& callback,
277 scoped_ptr<cc::CopyOutputResult> result); 279 scoped_ptr<cc::CopyOutputResult> result);
278 static void PrepareBitmapCopyOutputResult( 280 static void PrepareBitmapCopyOutputResult(
279 const gfx::Size& dst_size_in_pixel, 281 const gfx::Size& dst_size_in_pixel,
280 const base::Callback<void(bool, const SkBitmap&)>& callback, 282 const base::Callback<void(bool, const SkBitmap&)>& callback,
281 scoped_ptr<cc::CopyOutputResult> result); 283 scoped_ptr<cc::CopyOutputResult> result);
282 284
283 // DevTools ScreenCast support for Android WebView. 285 // DevTools ScreenCast support for Android WebView.
284 void SynchronousCopyContents( 286 void SynchronousCopyContents(
285 const gfx::Rect& src_subrect_in_pixel, 287 const gfx::Rect& src_subrect_in_pixel,
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 const bool using_synchronous_compositor_; 354 const bool using_synchronous_compositor_;
353 355
354 scoped_ptr<DelegatedFrameEvictor> frame_evictor_; 356 scoped_ptr<DelegatedFrameEvictor> frame_evictor_;
355 357
356 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); 358 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid);
357 }; 359 };
358 360
359 } // namespace content 361 } // namespace content
360 362
361 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ 363 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698