diff options
Diffstat (limited to 'chrome/browser/extensions/launch_util.h')
-rw-r--r-- | chrome/browser/extensions/launch_util.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/browser/extensions/launch_util.h b/chrome/browser/extensions/launch_util.h index 3cf2641..9b0b294 100644 --- a/chrome/browser/extensions/launch_util.h +++ b/chrome/browser/extensions/launch_util.h @@ -9,7 +9,9 @@ #include "extensions/common/constants.h" -class ExtensionService; +namespace content { +class BrowserContext; +} namespace user_prefs { class PrefRegistrySyncable; @@ -38,7 +40,7 @@ LaunchType GetLaunchTypePrefValue(const ExtensionPrefs* prefs, const std::string& extension_id); // Sets an extension's launch type preference and syncs the value if necessary. -void SetLaunchType(ExtensionService* prefs, +void SetLaunchType(content::BrowserContext* context, const std::string& extension_id, LaunchType launch_type); |