Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(365)

Unified Diff: chrome/browser/extensions/extension_prefs.cc

Issue 3611014: Fix 57090: NTP apps sorted in random-looking order.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/extensions/extension_prefs.h ('k') | chrome/browser/extensions/extension_prefs_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_prefs.cc
===================================================================
--- chrome/browser/extensions/extension_prefs.cc (revision 61932)
+++ chrome/browser/extensions/extension_prefs.cc (working copy)
@@ -79,6 +79,9 @@
// used for apps.
const char kPrefLaunchType[] = "launchType";
+// A preference determining the order of which the apps appear on the NTP.
+const char kPrefAppLaunchIndex[] = "app_launcher_index";
+
} // namespace
////////////////////////////////////////////////////////////////////////////////
@@ -538,6 +541,8 @@
UpdateExtensionPref(id, kPrefManifest,
extension->manifest_value()->DeepCopy());
}
+ UpdateExtensionPref(id, kPrefAppLaunchIndex,
+ Value::CreateIntegerValue(GetNextAppLaunchIndex()));
SavePrefsAndNotify();
}
@@ -864,6 +869,37 @@
SavePrefsAndNotify();
}
+int ExtensionPrefs::GetAppLaunchIndex(const std::string& extension_id) {
+ int value;
+ if (ReadExtensionPrefInteger(extension_id, kPrefAppLaunchIndex, &value))
+ return value;
+
+ return -1;
+}
+
+void ExtensionPrefs::SetAppLaunchIndex(const std::string& extension_id,
+ int index) {
+ DCHECK_GE(index, 0);
+ UpdateExtensionPref(extension_id, kPrefAppLaunchIndex,
+ Value::CreateIntegerValue(index));
+ SavePrefsAndNotify();
+}
+
+int ExtensionPrefs::GetNextAppLaunchIndex() {
+ const DictionaryValue* extensions = prefs_->GetDictionary(kExtensionsPref);
+ if (!extensions)
+ return 0;
+
+ int max_value = -1;
+ for (DictionaryValue::key_iterator extension_id = extensions->begin_keys();
+ extension_id != extensions->end_keys(); ++extension_id) {
+ int value = GetAppLaunchIndex(*extension_id);
+ if (value > max_value)
+ max_value = value;
+ }
+ return max_value + 1;
+}
+
// static
void ExtensionPrefs::RegisterUserPrefs(PrefService* prefs) {
prefs->RegisterDictionaryPref(kExtensionsPref);
« no previous file with comments | « chrome/browser/extensions/extension_prefs.h ('k') | chrome/browser/extensions/extension_prefs_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698