Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef MOJO_COMMON_BINDINGS_SUPPORT_IMPL_H_ | |
| 6 #define MOJO_COMMON_BINDINGS_SUPPORT_IMPL_H_ | |
| 7 | |
| 8 #include "mojo/public/bindings/lib/bindings_support.h" | |
| 9 | |
| 10 #include "base/compiler_specific.h" | |
| 11 #include "mojo/common/mojo_common_export.h" | |
| 12 | |
| 13 namespace mojo { | |
| 14 namespace common { | |
| 15 | |
| 16 class MOJO_COMMON_EXPORT BindingsSupportImpl | |
| 17 : NON_EXPORTED_BASE(public BindingsSupport) { | |
| 18 public: | |
| 19 BindingsSupportImpl(); | |
| 20 virtual ~BindingsSupportImpl(); | |
| 21 | |
| 22 // BindingsSupport methods: | |
| 23 virtual AsyncWaitID AsyncWait(Handle handle, MojoWaitFlags flags, | |
| 24 AsyncWaitCallback* callback) OVERRIDE; | |
| 25 virtual void CancelWait(AsyncWaitID async_wait_id) OVERRIDE; | |
| 26 }; | |
|
sky
2013/11/08 16:44:02
private: DISALLOW...
| |
| 27 | |
| 28 } // namespace common | |
| 29 } // namespace mojo | |
| 30 | |
| 31 #endif // MOJO_COMMON_BINDINGS_SUPPORT_IMPL_H_ | |
| OLD | NEW |