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

Side by Side Diff: content/public/browser/android/synchronous_compositor.h

Issue 15851006: Move synchronous compositor into content/browser (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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_PUBLIC_RENDERER_ANDROID_SYNCHRONOUS_COMPOSITOR_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_H_
6 #define CONTENT_PUBLIC_RENDERER_ANDROID_SYNCHRONOUS_COMPOSITOR_H_ 6 #define CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_H_
7 7
8 #include "ui/gfx/rect.h" 8 #include "ui/gfx/rect.h"
9 #include "ui/gfx/size.h" 9 #include "ui/gfx/size.h"
10 10
11 class SkCanvas; 11 class SkCanvas;
12 12
13 namespace gfx { 13 namespace gfx {
14 class Transform; 14 class Transform;
15 }; 15 };
16 16
17 namespace content { 17 namespace content {
18 18
19 class WebContents;
20
19 class SynchronousCompositorClient; 21 class SynchronousCompositorClient;
20 22
21 // Interface for embedders that wish to direct compositing operations 23 // Interface for embedders that wish to direct compositing operations
22 // synchronously under their own control. Only meaningful when the 24 // synchronously under their own control. Only meaningful when the
23 // kEnableSyncrhonousRendererCompositor flag is specified. 25 // kEnableSyncrhonousRendererCompositor flag is specified.
24 class SynchronousCompositor { 26 class SynchronousCompositor {
25 public: 27 public:
28 // Must be called once per WebContents instance. Will create the compositor
29 // instance as needed, but only if |client| is non-NULL.
30 static void SetClientForWebContents(WebContents* contents,
31 SynchronousCompositorClient* client);
32
26 // Allows changing or resetting the client to NULL (this must be used if 33 // Allows changing or resetting the client to NULL (this must be used if
27 // the client is being deleted prior to the DidDestroyCompositor() call 34 // the client is being deleted prior to the DidDestroyCompositor() call
28 // being received by the client). Ownership of |client| remains with 35 // being received by the client). Ownership of |client| remains with
29 // the caller. 36 // the caller.
30 virtual void SetClient(SynchronousCompositorClient* client) = 0; 37 virtual void SetClient(SynchronousCompositorClient* client) = 0;
31 38
32 // Returns true if the compositor is fully initialized and ready to receive 39 // Returns true if the compositor is fully initialized and ready to receive
33 // calls to DemandDrawHw(). 40 // calls to DemandDrawHw().
34 virtual bool IsHwReady() = 0; 41 virtual bool IsHwReady() = 0;
35 42
36 // "On demand" SW draw, into the supplied canvas (observing the transform 43 // "On demand" SW draw, into the supplied canvas (observing the transform
37 // and clip set there-in). 44 // and clip set there-in).
38 virtual bool DemandDrawSw(SkCanvas* canvas) = 0; 45 virtual bool DemandDrawSw(SkCanvas* canvas) = 0;
39 46
40 // "On demand" hardware draw. The content is first clipped to |damage_area|, 47 // "On demand" hardware draw. The content is first clipped to |damage_area|,
41 // then transformed through |transform|, and finally clipped to |view_size|. 48 // then transformed through |transform|, and finally clipped to |view_size|.
42 virtual bool DemandDrawHw( 49 virtual bool DemandDrawHw(
43 gfx::Size view_size, 50 gfx::Size view_size,
44 const gfx::Transform& transform, 51 const gfx::Transform& transform,
45 gfx::Rect damage_area) = 0; 52 gfx::Rect damage_area) = 0;
46 53
47 protected: 54 protected:
48 virtual ~SynchronousCompositor() {} 55 virtual ~SynchronousCompositor() {}
49 }; 56 };
50 57
51 } // namespace content 58 } // namespace content
52 59
53 #endif // CONTENT_PUBLIC_RENDERER_ANDROID_SYNCHRONOUS_COMPOSITOR_H_ 60 #endif // CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_H_
OLDNEW
« no previous file with comments | « content/content_renderer.gypi ('k') | content/public/browser/android/synchronous_compositor_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698