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

Unified Diff: ui/ozone/ozone_platform.cc

Issue 379233005: ozone: Move public files to ui/ozone/public & update public DEPS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/ozone/ozone_platform.h ('k') | ui/ozone/ozone_switches.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/ozone_platform.cc
diff --git a/ui/ozone/ozone_platform.cc b/ui/ozone/ozone_platform.cc
deleted file mode 100644
index ab21af9992c2efd1e2cd8afa2e427de99db157cc..0000000000000000000000000000000000000000
--- a/ui/ozone/ozone_platform.cc
+++ /dev/null
@@ -1,80 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "base/command_line.h"
-#include "base/debug/trace_event.h"
-#include "base/logging.h"
-#include "ui/events/device_data_manager.h"
-#include "ui/ozone/ozone_platform.h"
-#include "ui/ozone/ozone_switches.h"
-#include "ui/ozone/platform_object.h"
-#include "ui/ozone/platform_selection.h"
-
-namespace ui {
-
-namespace {
-
-bool g_platform_initialized_ui = false;
-bool g_platform_initialized_gpu = false;
-
-}
-
-OzonePlatform::OzonePlatform() {
- CHECK(!instance_) << "There should only be a single OzonePlatform.";
- instance_ = this;
- g_platform_initialized_ui = false;
- g_platform_initialized_gpu = false;
-}
-
-OzonePlatform::~OzonePlatform() {
- CHECK_EQ(instance_, this);
- instance_ = NULL;
-}
-
-// static
-void OzonePlatform::InitializeForUI() {
- CreateInstance();
- if (g_platform_initialized_ui)
- return;
- g_platform_initialized_ui = true;
- instance_->InitializeUI();
- // This is deliberately created after initializing so that the platform can
- // create its own version of DDM.
- DeviceDataManager::CreateInstance();
-}
-
-// static
-void OzonePlatform::InitializeForGPU() {
- CreateInstance();
- if (g_platform_initialized_gpu)
- return;
- g_platform_initialized_gpu = true;
- instance_->InitializeGPU();
-}
-
-// static
-OzonePlatform* OzonePlatform::GetInstance() {
- CHECK(instance_) << "OzonePlatform is not initialized";
- return instance_;
-}
-
-// static
-void OzonePlatform::CreateInstance() {
- if (!instance_) {
- TRACE_EVENT1("ozone",
- "OzonePlatform::Initialize",
- "platform",
- GetOzonePlatformName());
- scoped_ptr<OzonePlatform> platform =
- PlatformObject<OzonePlatform>::Create();
-
- // TODO(spang): Currently need to leak this object.
- CHECK_EQ(instance_, platform.release());
- }
-}
-
-// static
-OzonePlatform* OzonePlatform::instance_;
-
-} // namespace ui
« no previous file with comments | « ui/ozone/ozone_platform.h ('k') | ui/ozone/ozone_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698