OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef MOJO_PUBLIC_CPP_BINDINGS_PASSABLE_H_ | 5 #ifndef MOJO_PUBLIC_CPP_BINDINGS_PASSABLE_H_ |
6 #define MOJO_PUBLIC_CPP_BINDINGS_PASSABLE_H_ | 6 #define MOJO_PUBLIC_CPP_BINDINGS_PASSABLE_H_ |
7 | 7 |
8 #include "mojo/public/bindings/lib/bindings_internal.h" | 8 #include "mojo/public/cpp/bindings/lib/bindings_internal.h" |
9 #include "mojo/public/cpp/system/core.h" | 9 #include "mojo/public/cpp/system/core.h" |
10 | 10 |
11 namespace mojo { | 11 namespace mojo { |
12 | 12 |
13 template <typename HandleType> | 13 template <typename HandleType> |
14 class Passable { | 14 class Passable { |
15 public: | 15 public: |
16 // |ptr| may be null. | 16 // |ptr| may be null. |
17 explicit Passable(HandleType* ptr) : ptr_(ptr) { | 17 explicit Passable(HandleType* ptr) : ptr_(ptr) { |
18 } | 18 } |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 | 64 |
65 template <typename HandleType> | 65 template <typename HandleType> |
66 inline AssignableAndPassable<HandleType> MakeAssignableAndPassable( | 66 inline AssignableAndPassable<HandleType> MakeAssignableAndPassable( |
67 HandleType* ptr) { | 67 HandleType* ptr) { |
68 return AssignableAndPassable<HandleType>(ptr); | 68 return AssignableAndPassable<HandleType>(ptr); |
69 } | 69 } |
70 | 70 |
71 } // namespace mojo | 71 } // namespace mojo |
72 | 72 |
73 #endif // MOJO_PUBLIC_CPP_BINDINGS_PASSABLE_H_ | 73 #endif // MOJO_PUBLIC_CPP_BINDINGS_PASSABLE_H_ |
OLD | NEW |