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 EXTENSIONS_UTILITY_UTILITY_HANDLER_H_ | 5 #ifndef EXTENSIONS_UTILITY_UTILITY_HANDLER_H_ |
6 #define EXTENSIONS_UTILITY_UTILITY_HANDLER_H_ | 6 #define EXTENSIONS_UTILITY_UTILITY_HANDLER_H_ |
7 | 7 |
8 namespace service_manager { | 8 namespace service_manager { |
9 class InterfaceRegistry; | 9 class BinderRegistry; |
10 } | 10 } |
11 | 11 |
12 namespace extensions { | 12 namespace extensions { |
13 | 13 |
14 namespace utility_handler { | 14 namespace utility_handler { |
15 | 15 |
16 void UtilityThreadStarted(); | 16 void UtilityThreadStarted(); |
17 | 17 |
18 void ExposeInterfacesToBrowser(service_manager::InterfaceRegistry* registry, | 18 void ExposeInterfacesToBrowser(service_manager::BinderRegistry* registry, |
19 bool running_elevated); | 19 bool running_elevated); |
20 | 20 |
21 } // namespace utility_handler | 21 } // namespace utility_handler |
22 | 22 |
23 } // namespace extensions | 23 } // namespace extensions |
24 | 24 |
25 #endif // EXTENSIONS_UTILITY_UTILITY_HANDLER_H_ | 25 #endif // EXTENSIONS_UTILITY_UTILITY_HANDLER_H_ |
OLD | NEW |