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

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

Issue 10875065: Disable install of new default_apps for existing users (Closed) Base URL: http://git.chromium.org/git/chromium.git@disable_sync_behav
Patch Set: moved functions to unnamed namespace Created 8 years, 4 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 | « no previous file | chrome/browser/extensions/default_apps.cc » ('j') | chrome/browser/extensions/default_apps.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/default_apps.h
diff --git a/chrome/browser/extensions/default_apps.h b/chrome/browser/extensions/default_apps.h
index 7c13c8cda4b057debc485463735913061aa89823..672ead76284bedaef62fa328add44d2ebbafca6b 100644
--- a/chrome/browser/extensions/default_apps.h
+++ b/chrome/browser/extensions/default_apps.h
@@ -15,6 +15,10 @@ namespace extensions {
class Extension;
}
+namespace base {
+class DictionaryValue;
+}
+
// Functions and types related to installing default apps.
namespace default_apps {
@@ -28,10 +32,6 @@ enum InstallState {
kAlreadyInstalledDefaultApps
};
-bool ShouldInstallInProfile(Profile* profile);
-
-bool isLocaleSupported();
-
// Register preference properties used by default apps to maintain
// install state.
void RegisterUserPrefs(PrefService* prefs);
@@ -50,9 +50,13 @@ class Provider : public extensions::ExternalProviderImpl {
// ExternalProviderImpl overrides:
virtual void VisitRegisteredExtension() OVERRIDE;
+ virtual void SetPrefs(base::DictionaryValue* prefs) OVERRIDE;
private:
+ bool ShouldInstallInProfile();
+
Profile* profile_;
+ bool isMigration_;
DISALLOW_COPY_AND_ASSIGN(Provider);
};
« no previous file with comments | « no previous file | chrome/browser/extensions/default_apps.cc » ('j') | chrome/browser/extensions/default_apps.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698