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

Unified Diff: cc/output/software_overlay_presenter_hal.cc

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/software_overlay_presenter_hal.h ('k') | cc/quads/render_pass.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/software_overlay_presenter_hal.cc
diff --git a/cc/output/software_overlay_presenter_hal.cc b/cc/output/software_overlay_presenter_hal.cc
new file mode 100644
index 0000000000000000000000000000000000000000..c71973042f893b4e5e3cac41d5357b24349ce264
--- /dev/null
+++ b/cc/output/software_overlay_presenter_hal.cc
@@ -0,0 +1,45 @@
+// Copyright (c) 2013 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.
+
+#include "cc/output/software_overlay_presenter_hal.h"
+
+#include <stdlib.h>
+
+namespace cc {
+
+// static
+SoftwareOverlayPresenterHAL* SoftwareOverlayPresenterHAL::impl_ = NULL;
+
+SoftwareOverlayPresenterHAL::OverlaySurface::OverlaySurface() {}
+
+SoftwareOverlayPresenterHAL::OverlaySurface::~OverlaySurface() {}
+
+class SoftwareOverlayPresenterHALStub : public SoftwareOverlayPresenterHAL {
+ public:
+ SoftwareOverlayPresenterHALStub() {}
+ virtual ~SoftwareOverlayPresenterHALStub() {}
+
+ virtual void CheckOverlaySupport(std::vector<OverlaySurface>* surfaces)
+ OVERRIDE {}
+};
+
+SoftwareOverlayPresenterHAL::SoftwareOverlayPresenterHAL() {}
+
+SoftwareOverlayPresenterHAL::~SoftwareOverlayPresenterHAL() {}
+
+SoftwareOverlayPresenterHAL* SoftwareOverlayPresenterHAL::GetInstance() {
+ return impl_;
+}
+
+void SoftwareOverlayPresenterHAL::SetInstance(
+ SoftwareOverlayPresenterHAL* impl) {
+ impl_ = impl;
+}
+
+// static
+SoftwareOverlayPresenterHAL* SoftwareOverlayPresenterHAL::CreateTestHelper() {
+ return new SoftwareOverlayPresenterHALStub;
+}
+
+} // namespace cc
« no previous file with comments | « cc/output/software_overlay_presenter_hal.h ('k') | cc/quads/render_pass.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698