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

Side by Side Diff: ui/ozone/gpu/gpu_platform_support.cc

Issue 338193003: ozone: gpu: Add plumbing for platform-specific gpu messaging (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge ozone_gpu back into ozone Created 6 years, 6 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 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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698