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

Unified 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: Rebase Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/output/overlay_renderer.cc ('k') | cc/output/software_overlay_presenter_hal.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/software_overlay_presenter_hal.h
diff --git a/cc/output/software_overlay_presenter_hal.h b/cc/output/software_overlay_presenter_hal.h
new file mode 100644
index 0000000000000000000000000000000000000000..a535fb97c10d3ae37fafec4b6d24f2582ab467db
--- /dev/null
+++ b/cc/output/software_overlay_presenter_hal.h
@@ -0,0 +1,41 @@
+// Copyright 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CC_OUTPUT_SOFTWARE_OVERLAY_PRESENTER_HAL_H_
+#define CC_OUTPUT_SOFTWARE_OVERLAY_PRESENTER_HAL_H_
+
+#include "base/basictypes.h"
+#include "cc/base/cc_export.h"
+#include "cc/quads/render_pass.h"
+
+namespace cc {
+
+class CC_EXPORT SoftwareOverlayPresenterHAL {
+ public:
+ struct OverlaySurface {
+ OverlaySurface();
+ ~OverlaySurface();
+ gfx::Rect rect;
+ };
+
+ SoftwareOverlayPresenterHAL();
+ virtual ~SoftwareOverlayPresenterHAL();
+
+ // Returns the instance
+ static SoftwareOverlayPresenterHAL* GetInstance();
+
+ // Sets the implementation delegate. Ownership is retained by the caller.
+ static void SetInstance(SoftwareOverlayPresenterHAL* impl);
+
+ static SoftwareOverlayPresenterHAL* CreateTestHelper();
+
+ virtual void CheckOverlaySupport(std::vector<OverlaySurface>* surfaces) = 0;
+
+ private:
+ static SoftwareOverlayPresenterHAL* impl_; // not owned
+};
+
+} // namespace cc
+
+#endif // CC_OUTPUT_SOFTWARE_OVERLAY_PRESENTER_HAL_H_
« no previous file with comments | « cc/output/overlay_renderer.cc ('k') | cc/output/software_overlay_presenter_hal.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698