| Index: chrome/browser/extensions/extension_service.h
|
| diff --git a/chrome/browser/extensions/extension_service.h b/chrome/browser/extensions/extension_service.h
|
| index 70b1a5fd094598b098f793d915f266e226ea444b..469d6b8a0ef95446a4d26d2be65c5d454fde7a74 100644
|
| --- a/chrome/browser/extensions/extension_service.h
|
| +++ b/chrome/browser/extensions/extension_service.h
|
| @@ -66,11 +66,6 @@ class ExtensionSystem;
|
| class ExtensionUpdater;
|
| class PendingExtensionManager;
|
| class SettingsFrontend;
|
| -
|
| -namespace app_file_handler_util {
|
| -struct SavedFileEntry;
|
| -}
|
| -
|
| }
|
|
|
| namespace syncer {
|
| @@ -803,10 +798,7 @@ class ExtensionService
|
|
|
| // Dispatches a restart event to the platform app associated with
|
| // |extension_host|.
|
| - static void RestartApplication(
|
| - std::vector<extensions::app_file_handler_util::SavedFileEntry>
|
| - file_entries,
|
| - extensions::ExtensionHost* extension_host);
|
| + static void RestartApplication(extensions::ExtensionHost* extension_host);
|
|
|
| // Helper to inspect an ExtensionHost after it has been loaded.
|
| void InspectExtensionHost(extensions::ExtensionHost* host);
|
| @@ -931,13 +923,6 @@ class ExtensionService
|
| // dispatched to the extension when it is loaded.
|
| std::map<std::string, int> on_load_events_;
|
|
|
| - // Maps extension ids to vectors of saved file entries that the extension
|
| - // should be given access to on restart.
|
| - typedef std::map<std::string,
|
| - std::vector<extensions::app_file_handler_util::SavedFileEntry> >
|
| - SavedFileEntryMap;
|
| - SavedFileEntryMap on_restart_file_entries_;
|
| -
|
| content::NotificationRegistrar registrar_;
|
| PrefChangeRegistrar pref_change_registrar_;
|
|
|
|
|