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

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

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/dom_ui/app_launcher_handler.cc ('k') | chrome/browser/extensions/extension_prefs.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_prefs.h
===================================================================
--- chrome/browser/extensions/extension_prefs.h (revision 61932)
+++ chrome/browser/extensions/extension_prefs.h (working copy)
@@ -172,6 +172,19 @@
bool GetWebStoreLogin(std::string* result);
void SetWebStoreLogin(const std::string& login);
+ // Get the application launch index for an extension with |extension_id|. This
+ // determines the order of which the applications appear on the New Tab Page.
+ // A value of 0 generally indicates top left. If the extension has no launch
+ // index a -1 value is returned.
+ int GetAppLaunchIndex(const std::string& extension_id);
+
+ // Sets a specific launch index for an extension with |extension_id|.
+ void SetAppLaunchIndex(const std::string& extension_id, int index);
+
+ // Gets the next available application launch index. This is 1 higher than the
+ // highest current application launch index found.
+ int GetNextAppLaunchIndex();
+
static void RegisterUserPrefs(PrefService* prefs);
// The underlying PrefService.
« no previous file with comments | « chrome/browser/dom_ui/app_launcher_handler.cc ('k') | chrome/browser/extensions/extension_prefs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698