OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/dom_ui/app_launcher_handler.h" | 5 #include "chrome/browser/dom_ui/app_launcher_handler.h" |
6 | 6 |
7 #include "app/animation.h" | 7 #include "app/animation.h" |
8 #include "base/string_number_conversions.h" | 8 #include "base/string_number_conversions.h" |
9 #include "base/string_util.h" | 9 #include "base/string_util.h" |
10 #include "base/utf_string_conversions.h" | 10 #include "base/utf_string_conversions.h" |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 value->SetString("options_url", extension->options_url().spec()); | 110 value->SetString("options_url", extension->options_url().spec()); |
111 value->SetString("icon_big", GetIconURL( | 111 value->SetString("icon_big", GetIconURL( |
112 extension, Extension::EXTENSION_ICON_LARGE, | 112 extension, Extension::EXTENSION_ICON_LARGE, |
113 "chrome://theme/IDR_APP_DEFAULT_ICON")); | 113 "chrome://theme/IDR_APP_DEFAULT_ICON")); |
114 value->SetString("icon_small", GetIconURL( | 114 value->SetString("icon_small", GetIconURL( |
115 extension, Extension::EXTENSION_ICON_BITTY, | 115 extension, Extension::EXTENSION_ICON_BITTY, |
116 std::string("chrome://favicon/") + extension->GetFullLaunchURL().spec())); | 116 std::string("chrome://favicon/") + extension->GetFullLaunchURL().spec())); |
117 value->SetInteger("launch_container", extension->launch_container()); | 117 value->SetInteger("launch_container", extension->launch_container()); |
118 value->SetInteger("launch_type", | 118 value->SetInteger("launch_type", |
119 extension_prefs->GetLaunchType(extension->id())); | 119 extension_prefs->GetLaunchType(extension->id())); |
| 120 |
| 121 int app_launch_index = extension_prefs->GetAppLaunchIndex(extension->id()); |
| 122 if (app_launch_index == -1) { |
| 123 // Make sure every app has a launch index (some predate the launch index). |
| 124 app_launch_index = extension_prefs->GetNextAppLaunchIndex(); |
| 125 extension_prefs->SetAppLaunchIndex(extension->id(), app_launch_index); |
| 126 } |
| 127 value->SetInteger("app_launch_index", app_launch_index); |
120 } | 128 } |
121 | 129 |
122 void AppLauncherHandler::FillAppDictionary(DictionaryValue* dictionary) { | 130 void AppLauncherHandler::FillAppDictionary(DictionaryValue* dictionary) { |
123 ListValue* list = new ListValue(); | 131 ListValue* list = new ListValue(); |
124 const ExtensionList* extensions = extensions_service_->extensions(); | 132 const ExtensionList* extensions = extensions_service_->extensions(); |
125 for (ExtensionList::const_iterator it = extensions->begin(); | 133 for (ExtensionList::const_iterator it = extensions->begin(); |
126 it != extensions->end(); ++it) { | 134 it != extensions->end(); ++it) { |
127 // Don't include the WebStore component app. The WebStore launcher | 135 // Don't include the WebStore component app. The WebStore launcher |
128 // gets special treatment in ntp/apps.js. | 136 // gets special treatment in ntp/apps.js. |
129 if ((*it)->is_app() && (*it)->id() != extension_misc::kWebStoreAppId) { | 137 if ((*it)->is_app() && (*it)->id() != extension_misc::kWebStoreAppId) { |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 return; | 270 return; |
263 | 271 |
264 extensions_service_->UninstallExtension(extension_id_prompting_, | 272 extensions_service_->UninstallExtension(extension_id_prompting_, |
265 false /* external_uninstall */); | 273 false /* external_uninstall */); |
266 extension_id_prompting_ = ""; | 274 extension_id_prompting_ = ""; |
267 } | 275 } |
268 | 276 |
269 void AppLauncherHandler::InstallUIAbort() { | 277 void AppLauncherHandler::InstallUIAbort() { |
270 extension_id_prompting_ = ""; | 278 extension_id_prompting_ = ""; |
271 } | 279 } |
OLD | NEW |