Chromium Code Reviews| Index: chrome/browser/extensions/default_apps.h |
| diff --git a/chrome/browser/extensions/default_apps.h b/chrome/browser/extensions/default_apps.h |
| index 996b9cad2db29b8f193f40191f2a24b0f696bbbf..768e0d2645056193b41e05acbe6f4476840c3ae1 100644 |
| --- a/chrome/browser/extensions/default_apps.h |
| +++ b/chrome/browser/extensions/default_apps.h |
| @@ -22,15 +22,20 @@ namespace default_apps { |
| // be changed. |
| enum InstallState { |
| kUnknown, |
| + // Now unused, leave it for backward compatibility. |
| kAlwaysProvideDefaultApps, |
|
Mihai Parparita -not on Chrome
2012/08/15 00:32:13
Can you rename the enum value to kProvidedLegacyDe
|
| - kNeverProvideDefaultApps |
| + kNeverProvideDefaultApps, |
|
Mihai Parparita -not on Chrome
2012/08/15 00:32:13
Rename this to kNeverInstallDefaultApps, since we
|
| + kAlreadyInstalledDefaultApps |
| }; |
| +bool ShouldInstallInProfile(Profile* profile); |
| + |
| +bool isLocaleSupported(); |
| + |
| // Register preference properties used by default apps to maintain |
| // install state. |
| void RegisterUserPrefs(PrefService* prefs); |
| - |
| // A specialization of the ExternalProviderImpl that conditionally installs apps |
| // from the chrome::DIR_DEFAULT_APPS location based on a preference in the |
| // profile. |