OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_LIB_INTERFACE_PTR_INTERNAL_H_ | 5 #ifndef MOJO_PUBLIC_CPP_BINDINGS_LIB_INTERFACE_PTR_INTERNAL_H_ |
6 #define MOJO_PUBLIC_CPP_BINDINGS_LIB_INTERFACE_PTR_INTERNAL_H_ | 6 #define MOJO_PUBLIC_CPP_BINDINGS_LIB_INTERFACE_PTR_INTERNAL_H_ |
7 | 7 |
8 #include <assert.h> | 8 #include <assert.h> |
9 #include <stdio.h> | |
10 | 9 |
11 #include "mojo/public/cpp/bindings/lib/filter_chain.h" | 10 #include "mojo/public/cpp/bindings/lib/filter_chain.h" |
12 #include "mojo/public/cpp/bindings/lib/message_header_validator.h" | 11 #include "mojo/public/cpp/bindings/lib/message_header_validator.h" |
13 #include "mojo/public/cpp/bindings/lib/router.h" | 12 #include "mojo/public/cpp/bindings/lib/router.h" |
14 #include "mojo/public/cpp/environment/environment.h" | 13 #include "mojo/public/cpp/environment/environment.h" |
15 | 14 |
16 namespace mojo { | 15 namespace mojo { |
17 namespace internal { | 16 namespace internal { |
18 | 17 |
19 template <typename Interface> | 18 template <typename Interface> |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 ProxyWithStub* proxy_; | 79 ProxyWithStub* proxy_; |
81 Router* router_; | 80 Router* router_; |
82 | 81 |
83 MOJO_DISALLOW_COPY_AND_ASSIGN(InterfacePtrState); | 82 MOJO_DISALLOW_COPY_AND_ASSIGN(InterfacePtrState); |
84 }; | 83 }; |
85 | 84 |
86 } // namespace internal | 85 } // namespace internal |
87 } // namespace mojo | 86 } // namespace mojo |
88 | 87 |
89 #endif // MOJO_PUBLIC_CPP_BINDINGS_LIB_INTERFACE_PTR_INTERNAL_H_ | 88 #endif // MOJO_PUBLIC_CPP_BINDINGS_LIB_INTERFACE_PTR_INTERNAL_H_ |
OLD | NEW |