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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_PREFS_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_PREFS_H_
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_PREFS_H_ 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_PREFS_H_
7 #pragma once 7 #pragma once
8 8
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 std::set<std::string> GetIdleInstallInfoIds(); 165 std::set<std::string> GetIdleInstallInfoIds();
166 166
167 // We allow the web store to set a string containing login information when a 167 // We allow the web store to set a string containing login information when a
168 // purchase is made, so that when a user logs into sync with a different 168 // purchase is made, so that when a user logs into sync with a different
169 // account we can recognize the situation. The Get function returns true if 169 // account we can recognize the situation. The Get function returns true if
170 // there was previously stored data (placing it in |result|), or false 170 // there was previously stored data (placing it in |result|), or false
171 // otherwise. The Set will overwrite any previous login. 171 // otherwise. The Set will overwrite any previous login.
172 bool GetWebStoreLogin(std::string* result); 172 bool GetWebStoreLogin(std::string* result);
173 void SetWebStoreLogin(const std::string& login); 173 void SetWebStoreLogin(const std::string& login);
174 174
175 // Get the application launch index for an extension with |extension_id|. This
176 // determines the order of which the applications appear on the New Tab Page.
177 // A value of 0 generally indicates top left. If the extension has no launch
178 // index a -1 value is returned.
179 int GetAppLaunchIndex(const std::string& extension_id);
180
181 // Sets a specific launch index for an extension with |extension_id|.
182 void SetAppLaunchIndex(const std::string& extension_id, int index);
183
184 // Gets the next available application launch index. This is 1 higher than the
185 // highest current application launch index found.
186 int GetNextAppLaunchIndex();
187
175 static void RegisterUserPrefs(PrefService* prefs); 188 static void RegisterUserPrefs(PrefService* prefs);
176 189
177 // The underlying PrefService. 190 // The underlying PrefService.
178 PrefService* pref_service() const { return prefs_; } 191 PrefService* pref_service() const { return prefs_; }
179 192
180 private: 193 private:
181 // Converts absolute paths in the pref to paths relative to the 194 // Converts absolute paths in the pref to paths relative to the
182 // install_directory_. 195 // install_directory_.
183 void MakePathsRelative(); 196 void MakePathsRelative();
184 197
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 // Base extensions install directory. 254 // Base extensions install directory.
242 FilePath install_directory_; 255 FilePath install_directory_;
243 256
244 // The URLs of all of the toolstrips. 257 // The URLs of all of the toolstrips.
245 URLList shelf_order_; 258 URLList shelf_order_;
246 259
247 DISALLOW_COPY_AND_ASSIGN(ExtensionPrefs); 260 DISALLOW_COPY_AND_ASSIGN(ExtensionPrefs);
248 }; 261 };
249 262
250 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_PREFS_H_ 263 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_PREFS_H_
OLDNEW
« 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