OLD | NEW |
(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 |
OLD | NEW |