OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 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/ozone/gpu/gpu_platform_support.h" |
| 6 |
| 7 #include "base/logging.h" |
| 8 #include "ui/ozone/ozone_export.h" |
| 9 |
| 10 namespace ui { |
| 11 |
| 12 namespace { |
| 13 |
| 14 // No-op implementation of GpuPlatformSupport. |
| 15 class OZONE_EXPORT StubGpuPlatformSupport : public GpuPlatformSupport { |
| 16 public: |
| 17 // GpuPlatformSupport: |
| 18 virtual void OnChannelEstablished(IPC::Sender* sender) {} |
| 19 bool OnMessageReceived(const IPC::Message&) OVERRIDE { return false; } |
| 20 }; |
| 21 |
| 22 } // namespace |
| 23 |
| 24 GpuPlatformSupport::GpuPlatformSupport() { |
| 25 DCHECK(!instance_); |
| 26 instance_ = this; |
| 27 } |
| 28 |
| 29 GpuPlatformSupport::~GpuPlatformSupport() { |
| 30 DCHECK(instance_ == this); |
| 31 instance_ = NULL; |
| 32 } |
| 33 |
| 34 // static |
| 35 GpuPlatformSupport* GpuPlatformSupport::GetInstance() { |
| 36 return instance_; |
| 37 } |
| 38 |
| 39 // static |
| 40 GpuPlatformSupport* GpuPlatformSupport::instance_; |
| 41 |
| 42 GpuPlatformSupport* CreateStubGpuPlatformSupport() { |
| 43 return new StubGpuPlatformSupport; |
| 44 } |
| 45 |
| 46 } // namespace ui |
OLD | NEW |