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

Unified Diff: mojo/public/bindings/lib/bindings_support.cc

Issue 134253004: Mojo: AsyncWaiter and mojo/public/environment (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add missing files Created 6 years, 11 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
Index: mojo/public/bindings/lib/bindings_support.cc
diff --git a/mojo/public/bindings/lib/bindings_support.cc b/mojo/public/bindings/lib/bindings_support.cc
deleted file mode 100644
index 8ea20131f3b7f39b152ccbc8e9b51528ff1ddaaa..0000000000000000000000000000000000000000
--- a/mojo/public/bindings/lib/bindings_support.cc
+++ /dev/null
@@ -1,27 +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 "mojo/public/bindings/lib/bindings_support.h"
-
-#include <assert.h>
-#include <stddef.h>
-
-namespace mojo {
-
-namespace {
-BindingsSupport* g_bindings_support = NULL;
-}
-
-// static
-void BindingsSupport::Set(BindingsSupport* support) {
- g_bindings_support = support;
-}
-
-// static
-BindingsSupport* BindingsSupport::Get() {
- assert(g_bindings_support);
- return g_bindings_support;
-}
-
-} // namespace mojo

Powered by Google App Engine
This is Rietveld 408576698