summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/platform_app_launcher.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/extensions/platform_app_launcher.cc')
-rw-r--r--chrome/browser/extensions/platform_app_launcher.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/extensions/platform_app_launcher.cc b/chrome/browser/extensions/platform_app_launcher.cc
index 1956abd..65d6653 100644
--- a/chrome/browser/extensions/platform_app_launcher.cc
+++ b/chrome/browser/extensions/platform_app_launcher.cc
@@ -343,8 +343,8 @@ void RestartPlatformApp(Profile* profile, const Extension* extension) {
ExtensionPrefs* extension_prefs = ExtensionSystem::Get(profile)->
extension_service()->extension_prefs();
- bool had_windows = extension_prefs->HasWindows(extension->id());
- extension_prefs->SetHasWindows(extension->id(), false);
+ bool had_windows = extension_prefs->IsActive(extension->id());
+ extension_prefs->SetIsActive(extension->id(), false);
bool listening_to_launch = event_router->
ExtensionHasEventListener(extension->id(), event_names::kOnLaunched);