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

Side by Side Diff: cc/output/software_overlay_presenter_hal.h

Issue 132543002: Not for review. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CC_OUTPUT_SOFTWARE_OVERLAY_PRESENTER_HAL_H_
6 #define CC_OUTPUT_SOFTWARE_OVERLAY_PRESENTER_HAL_H_
7
8 #include "base/basictypes.h"
9 #include "cc/base/cc_export.h"
10 #include "cc/quads/render_pass.h"
11
12 namespace cc {
13
14 class CC_EXPORT SoftwareOverlayPresenterHAL {
rjkroege 2014/01/10 19:14:04 needs some docs too. This is the abstraction to t
15 public:
16 struct OverlaySurface {
17 OverlaySurface();
18 ~OverlaySurface();
19 gfx::Rect rect;
20 };
21
22 SoftwareOverlayPresenterHAL();
23 virtual ~SoftwareOverlayPresenterHAL();
24
25 // Returns the instance
26 static SoftwareOverlayPresenterHAL* GetInstance();
27
28 // Sets the implementation delegate. Ownership is retained by the caller.
29 static void SetInstance(SoftwareOverlayPresenterHAL* impl);
30
31 static SoftwareOverlayPresenterHAL* CreateTestHelper();
32
33 virtual void CheckOverlaySupport(std::vector<OverlaySurface>* surfaces) = 0;
34
35 private:
36 static SoftwareOverlayPresenterHAL* impl_; // not owned
37 };
38
39 } // namespace cc
40
41 #endif // CC_OUTPUT_SOFTWARE_OVERLAY_PRESENTER_HAL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698