Index: extensions/shell/browser/desktop_controller.cc |
diff --git a/extensions/shell/browser/desktop_controller.cc b/extensions/shell/browser/desktop_controller.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..7bf6bc52c0832b550ff41528189acd683d376606 |
--- /dev/null |
+++ b/extensions/shell/browser/desktop_controller.cc |
@@ -0,0 +1,32 @@ |
+// Copyright 2014 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 "extensions/shell/browser/desktop_controller.h" |
+ |
+#include "base/logging.h" |
+#include "base/macros.h" |
+ |
+namespace extensions { |
+namespace { |
+ |
+DesktopController* g_instance = NULL; |
+ |
+} // namespace |
+ |
+// static |
+DesktopController* DesktopController::instance() { |
+ return g_instance; |
+} |
+ |
+DesktopController::DesktopController() { |
+ CHECK(!g_instance) << "DesktopController already exists"; |
+ g_instance = this; |
+} |
+ |
+DesktopController::~DesktopController() { |
+ DCHECK(g_instance); |
+ g_instance = NULL; |
+} |
+ |
+} // namespace extensions |