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

Side by Side Diff: mojo/public/cpp/bindings/passable.h

Issue 220243007: Mojo: Move mojo/public/bindings/lib to mojo/public/cpp/bindings/lib. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « mojo/public/cpp/bindings/message.h ('k') | mojo/public/cpp/bindings/remote_ptr.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « mojo/public/cpp/bindings/message.h ('k') | mojo/public/cpp/bindings/remote_ptr.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698