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

Unified Diff: mojo/common/bindings_support_impl.h

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/common/bindings_support_impl.h
diff --git a/mojo/common/bindings_support_impl.h b/mojo/common/bindings_support_impl.h
deleted file mode 100644
index 2f08ba07e3ec405be2ff2531b5cdeb51c73f7e64..0000000000000000000000000000000000000000
--- a/mojo/common/bindings_support_impl.h
+++ /dev/null
@@ -1,41 +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.
-
-#ifndef MOJO_COMMON_BINDINGS_SUPPORT_IMPL_H_
-#define MOJO_COMMON_BINDINGS_SUPPORT_IMPL_H_
-
-#include "mojo/public/bindings/lib/bindings_support.h"
-
-#include "base/basictypes.h"
-#include "base/compiler_specific.h"
-#include "base/memory/ref_counted.h"
-#include "mojo/common/mojo_common_export.h"
-
-namespace mojo {
-namespace common {
-
-class MOJO_COMMON_EXPORT BindingsSupportImpl
- : NON_EXPORTED_BASE(public BindingsSupport) {
- public:
- BindingsSupportImpl();
- virtual ~BindingsSupportImpl();
-
- // BindingsSupport methods:
- virtual Buffer* GetCurrentBuffer() OVERRIDE;
- virtual Buffer* SetCurrentBuffer(Buffer* buf) OVERRIDE;
- virtual AsyncWaitID AsyncWait(const Handle& handle, MojoWaitFlags flags,
- AsyncWaitCallback* callback) OVERRIDE;
- virtual void CancelWait(AsyncWaitID async_wait_id) OVERRIDE;
-
- private:
- class Context;
- scoped_refptr<Context> context_;
-
- DISALLOW_COPY_AND_ASSIGN(BindingsSupportImpl);
-};
-
-} // namespace common
-} // namespace mojo
-
-#endif // MOJO_COMMON_BINDINGS_SUPPORT_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698