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

Side by Side 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: 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 (c) 2013 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 #include "cc/output/software_overlay_presenter_hal.h"
6
7 #include <stdlib.h>
8
9 namespace cc {
10
11 // static
12 SoftwareOverlayPresenterHAL* SoftwareOverlayPresenterHAL::impl_ = NULL;
13
14 SoftwareOverlayPresenterHAL::OverlaySurface::OverlaySurface() {}
15
16 SoftwareOverlayPresenterHAL::OverlaySurface::~OverlaySurface() {}
17
18 class SoftwareOverlayPresenterHALStub : public SoftwareOverlayPresenterHAL {
19 public:
20 SoftwareOverlayPresenterHALStub() {}
21 virtual ~SoftwareOverlayPresenterHALStub() {}
22
23 virtual void CheckOverlaySupport(std::vector<OverlaySurface>* surfaces)
24 OVERRIDE {}
25 };
26
27 SoftwareOverlayPresenterHAL::SoftwareOverlayPresenterHAL() {}
28
29 SoftwareOverlayPresenterHAL::~SoftwareOverlayPresenterHAL() {}
30
31 SoftwareOverlayPresenterHAL* SoftwareOverlayPresenterHAL::GetInstance() {
32 return impl_;
33 }
34
35 void SoftwareOverlayPresenterHAL::SetInstance(
36 SoftwareOverlayPresenterHAL* impl) {
37 impl_ = impl;
38 }
39
40 // static
41 SoftwareOverlayPresenterHAL* SoftwareOverlayPresenterHAL::CreateTestHelper() {
42 return new SoftwareOverlayPresenterHALStub;
43 }
44
45 } // namespace cc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698