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

Side by Side Diff: ui/gfx/ozone/overlay_hal_ozone.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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/gfx/ozone/overlay_hal_ozone.h ('k') | ui/gfx/ozone/surface_factory_ozone.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "ui/gfx/ozone/overlay_hal_ozone.h"
6
7 #include <stdlib.h>
8
9 namespace gfx {
10
11 // static
12 OverlayHALOzone* OverlayHALOzone::impl_ = NULL;
13
14 OverlayHALOzone::SurfaceCandidate::SurfaceCandidate()
15 : format(UNKNOWN), overlay_handled(false) {}
16
17 OverlayHALOzone::SurfaceCandidate::~SurfaceCandidate() {}
18
19 class OverlayHALOzoneStub : public OverlayHALOzone {
20 public:
21 OverlayHALOzoneStub() {}
22 virtual ~OverlayHALOzoneStub() {}
23
24 virtual void CheckOverlaySupport(std::vector<SurfaceCandidate>* surfaces)
25 OVERRIDE {}
26 };
27
28 OverlayHALOzone::OverlayHALOzone() {}
29
30 OverlayHALOzone::~OverlayHALOzone() {}
31
32 OverlayHALOzone* OverlayHALOzone::GetInstance() { return impl_; }
33
34 void OverlayHALOzone::SetInstance(OverlayHALOzone* impl) { impl_ = impl; }
35
36 // static
37 OverlayHALOzone* OverlayHALOzone::CreateTestHelper() {
38 return new OverlayHALOzoneStub;
39 }
40
41 } // namespace gfx
OLDNEW
« no previous file with comments | « ui/gfx/ozone/overlay_hal_ozone.h ('k') | ui/gfx/ozone/surface_factory_ozone.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698