OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 COMPONENTS_ARC_ARC_BRIDGE_SERVICE_H_ | 5 #ifndef COMPONENTS_ARC_ARC_BRIDGE_SERVICE_H_ |
6 #define COMPONENTS_ARC_ARC_BRIDGE_SERVICE_H_ | 6 #define COMPONENTS_ARC_ARC_BRIDGE_SERVICE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/files/scoped_file.h" | 11 #include "base/files/scoped_file.h" |
12 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
13 #include "base/macros.h" | 13 #include "base/macros.h" |
14 #include "base/memory/scoped_ptr.h" | |
15 #include "base/observer_list.h" | 14 #include "base/observer_list.h" |
16 #include "base/values.h" | 15 #include "base/values.h" |
17 #include "components/arc/common/arc_bridge.mojom.h" | 16 #include "components/arc/common/arc_bridge.mojom.h" |
18 | 17 |
19 namespace base { | 18 namespace base { |
20 class CommandLine; | 19 class CommandLine; |
21 } // namespace base | 20 } // namespace base |
22 | 21 |
23 namespace arc { | 22 namespace arc { |
24 | 23 |
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
339 | 338 |
340 // WeakPtrFactory to use callbacks. | 339 // WeakPtrFactory to use callbacks. |
341 base::WeakPtrFactory<ArcBridgeService> weak_factory_; | 340 base::WeakPtrFactory<ArcBridgeService> weak_factory_; |
342 | 341 |
343 DISALLOW_COPY_AND_ASSIGN(ArcBridgeService); | 342 DISALLOW_COPY_AND_ASSIGN(ArcBridgeService); |
344 }; | 343 }; |
345 | 344 |
346 } // namespace arc | 345 } // namespace arc |
347 | 346 |
348 #endif // COMPONENTS_ARC_ARC_BRIDGE_SERVICE_H_ | 347 #endif // COMPONENTS_ARC_ARC_BRIDGE_SERVICE_H_ |
OLD | NEW |