Chromium Code Reviews| Index: extensions/utility/utility_handler.h |
| diff --git a/extensions/utility/utility_handler.h b/extensions/utility/utility_handler.h |
| index 2378dcd3e8815689a326141cf8cdd4cc30d474bc..ddb3f1e901a8fe7d526a25885af85a22640ab9b7 100644 |
| --- a/extensions/utility/utility_handler.h |
| +++ b/extensions/utility/utility_handler.h |
| @@ -5,40 +5,18 @@ |
| #ifndef EXTENSIONS_UTILITY_UTILITY_HANDLER_H_ |
| #define EXTENSIONS_UTILITY_UTILITY_HANDLER_H_ |
| -#include <string> |
| - |
| -#include "base/macros.h" |
| - |
| -namespace IPC { |
| -class Message; |
| -} |
| - |
| namespace service_manager { |
| class InterfaceRegistry; |
| } |
| namespace extensions { |
| -// A handler for extensions-related IPC from within utility processes. |
| -class UtilityHandler { |
| - public: |
| - UtilityHandler(); |
| - ~UtilityHandler(); |
| - |
| - static void UtilityThreadStarted(); |
| - |
| - static void ExposeInterfacesToBrowser( |
| - service_manager::InterfaceRegistry* registry, |
| - bool running_elevated); |
| - |
| - bool OnMessageReceived(const IPC::Message& message); |
| - |
| - private: |
| - // IPC message handlers. |
| - void OnParseUpdateManifest(const std::string& xml); |
| +namespace utility_handler { |
|
Devlin
2017/03/21 23:51:17
nit: \n
Noel Gordon
2017/03/22 01:34:50
Done.
|
| +void UtilityThreadStarted(); |
| - DISALLOW_COPY_AND_ASSIGN(UtilityHandler); |
| -}; |
| +void ExposeInterfacesToBrowser(service_manager::InterfaceRegistry* registry, |
| + bool running_elevated); |
|
Devlin
2017/03/21 23:51:17
nit: \n
Noel Gordon
2017/03/22 01:34:50
Done.
|
| +} // namespace utility_handler |
| } // namespace extensions |