| Index: chrome/browser/extensions/extension_service.h
|
| diff --git a/chrome/browser/extensions/extension_service.h b/chrome/browser/extensions/extension_service.h
|
| index bd285fb73131a7ca100ae7d21d192affd120c486..4b1d6fcedcdab012212edc202ae48cb13ec67974 100644
|
| --- a/chrome/browser/extensions/extension_service.h
|
| +++ b/chrome/browser/extensions/extension_service.h
|
| @@ -618,6 +618,10 @@ class ExtensionService
|
| static void RecordPermissionMessagesHistogram(
|
| const extensions::Extension* e, const char* histogram);
|
|
|
| + // Open a dev tools window for the background page for the given extension,
|
| + // starting the background page first if necesary.
|
| + void InspectBackgroundPage(const extensions::Extension* extension);
|
| +
|
| #if defined(UNIT_TEST)
|
| void TrackTerminatedExtensionForTest(const extensions::Extension* extension) {
|
| TrackTerminatedExtension(extension);
|
| @@ -726,6 +730,9 @@ class ExtensionService
|
| // Launches the platform app associated with |extension_host|.
|
| static void LaunchApplication(extensions::ExtensionHost* extension_host);
|
|
|
| + // Helper to inspect an ExtensionHost after it has been loaded.
|
| + void InspectExtensionHost(extensions::ExtensionHost* host);
|
| +
|
| // The normal profile associated with this ExtensionService.
|
| Profile* profile_;
|
|
|
|
|