summaryrefslogtreecommitdiffstats
path: root/ppapi/shared_impl/ppapi_globals.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ppapi/shared_impl/ppapi_globals.cc')
-rw-r--r--ppapi/shared_impl/ppapi_globals.cc23
1 files changed, 0 insertions, 23 deletions
diff --git a/ppapi/shared_impl/ppapi_globals.cc b/ppapi/shared_impl/ppapi_globals.cc
deleted file mode 100644
index 9b5e9a8..0000000
--- a/ppapi/shared_impl/ppapi_globals.cc
+++ /dev/null
@@ -1,23 +0,0 @@
-// Copyright (c) 2011 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 "ppapi/shared_impl/ppapi_globals.h"
-
-#include "base/logging.h"
-
-namespace ppapi {
-
-PpapiGlobals* PpapiGlobals::ppapi_globals_ = NULL;
-
-PpapiGlobals::PpapiGlobals() {
- DCHECK(!ppapi_globals_);
- ppapi_globals_ = this;
-}
-
-PpapiGlobals::~PpapiGlobals() {
- DCHECK(ppapi_globals_ == this);
- ppapi_globals_ = NULL;
-}
-
-} // namespace ppapi