Add/resurrect support for bundles of WebStore items.
[chromium-blink-merge.git] / media / ozone / media_ozone_platform.cc
blobdcbc2f250168ae75d779567469f50083d962f472
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.
5 #include "media/ozone/media_ozone_platform.h"
7 #include "base/logging.h"
8 #include "base/trace_event/trace_event.h"
9 #include "ui/ozone/platform_object.h"
10 #include "ui/ozone/platform_selection.h"
12 namespace media {
14 namespace {
16 class MediaOzonePlatformStub : public MediaOzonePlatform {
17 public:
18 MediaOzonePlatformStub() {}
20 ~MediaOzonePlatformStub() override {}
22 private:
23 DISALLOW_COPY_AND_ASSIGN(MediaOzonePlatformStub);
26 } // namespace
28 // The following statics are just convenient stubs, declared by the
29 // generate_constructor_list.py script. They should be removed once the
30 // internal Ozone platforms decide to actually implement their media specifics.
31 MediaOzonePlatform* CreateMediaOzonePlatformCaca() {
32 return new MediaOzonePlatformStub;
35 MediaOzonePlatform* CreateMediaOzonePlatformDri() {
36 return new MediaOzonePlatformStub;
39 MediaOzonePlatform* CreateMediaOzonePlatformDrm() {
40 return new MediaOzonePlatformStub;
43 MediaOzonePlatform* CreateMediaOzonePlatformEgltest() {
44 return new MediaOzonePlatformStub;
47 MediaOzonePlatform* CreateMediaOzonePlatformGbm() {
48 return new MediaOzonePlatformStub;
51 MediaOzonePlatform* CreateMediaOzonePlatformTest() {
52 return new MediaOzonePlatformStub;
55 MediaOzonePlatform::MediaOzonePlatform() {
56 CHECK(!instance_) << "There should only be a single MediaOzonePlatform.";
57 instance_ = this;
60 MediaOzonePlatform::~MediaOzonePlatform() {
61 CHECK_EQ(instance_, this);
62 instance_ = NULL;
65 // static
66 MediaOzonePlatform* MediaOzonePlatform::GetInstance() {
67 if (!instance_)
68 CreateInstance();
69 return instance_;
72 VideoDecodeAccelerator* MediaOzonePlatform::CreateVideoDecodeAccelerator(
73 const base::Callback<bool(void)>& make_context_current) {
74 NOTIMPLEMENTED();
75 return NULL;
78 // static
79 void MediaOzonePlatform::CreateInstance() {
80 if (instance_)
81 return;
83 TRACE_EVENT1("ozone",
84 "MediaOzonePlatform::Initialize",
85 "platform",
86 ui::GetOzonePlatformName());
87 scoped_ptr<MediaOzonePlatform> platform =
88 ui::PlatformObject<MediaOzonePlatform>::Create();
90 // TODO(spang): Currently need to leak this object.
91 CHECK_EQ(instance_, platform.release());
94 // static
95 MediaOzonePlatform* MediaOzonePlatform::instance_;
97 } // namespace media