OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 CONTENT_COMMON_ASSOCIATED_INTERFACE_PROVIDER_IMPL_H_ |
| 6 #define CONTENT_COMMON_ASSOCIATED_INTERFACE_PROVIDER_IMPL_H_ |
| 7 |
5 #include "content/public/common/associated_interface_provider.h" | 8 #include "content/public/common/associated_interface_provider.h" |
6 | 9 |
7 #include <stdint.h> | 10 #include <stdint.h> |
8 #include <memory> | 11 #include <memory> |
9 | 12 |
10 #include "base/macros.h" | 13 #include "base/macros.h" |
11 #include "content/common/associated_interfaces.mojom.h" | 14 #include "content/common/associated_interfaces.mojom.h" |
12 | 15 |
13 namespace content { | 16 namespace content { |
14 | 17 |
(...skipping 21 matching lines...) Expand all Loading... |
36 class LocalProvider; | 39 class LocalProvider; |
37 | 40 |
38 mojom::AssociatedInterfaceProviderAssociatedPtr proxy_; | 41 mojom::AssociatedInterfaceProviderAssociatedPtr proxy_; |
39 | 42 |
40 std::unique_ptr<LocalProvider> local_provider_; | 43 std::unique_ptr<LocalProvider> local_provider_; |
41 | 44 |
42 DISALLOW_COPY_AND_ASSIGN(AssociatedInterfaceProviderImpl); | 45 DISALLOW_COPY_AND_ASSIGN(AssociatedInterfaceProviderImpl); |
43 }; | 46 }; |
44 | 47 |
45 } // namespace content | 48 } // namespace content |
| 49 |
| 50 #endif // CONTENT_COMMON_ASSOCIATED_INTERFACE_PROVIDER_IMPL_H_ |
OLD | NEW |