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

Unified Diff: chrome/browser/automation/automation_provider_observers.cc

Issue 10704023: Moved ExtensionPrefs and related into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Latest-er master merged in Created 8 years, 5 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
Index: chrome/browser/automation/automation_provider_observers.cc
diff --git a/chrome/browser/automation/automation_provider_observers.cc b/chrome/browser/automation/automation_provider_observers.cc
index 5ea90fce8f906c69b29e89c919c9cddf272999d3..1c9a99a765f5edee188baf73171a77685e846818 100644
--- a/chrome/browser/automation/automation_provider_observers.cc
+++ b/chrome/browser/automation/automation_provider_observers.cc
@@ -1954,13 +1954,13 @@ std::vector<DictionaryValue*>* GetAppInfoFromExtensions(
NOTREACHED() << "Can't get integer from key " << kLaunchType;
continue;
}
- if (launch_type == ExtensionPrefs::LAUNCH_PINNED) {
+ if (launch_type == extensions::ExtensionPrefs::LAUNCH_PINNED) {
app_info->SetString(kLaunchType, "pinned");
- } else if (launch_type == ExtensionPrefs::LAUNCH_REGULAR) {
+ } else if (launch_type == extensions::ExtensionPrefs::LAUNCH_REGULAR) {
app_info->SetString(kLaunchType, "regular");
- } else if (launch_type == ExtensionPrefs::LAUNCH_FULLSCREEN) {
+ } else if (launch_type == extensions::ExtensionPrefs::LAUNCH_FULLSCREEN) {
app_info->SetString(kLaunchType, "fullscreen");
- } else if (launch_type == ExtensionPrefs::LAUNCH_WINDOW) {
+ } else if (launch_type == extensions::ExtensionPrefs::LAUNCH_WINDOW) {
app_info->SetString(kLaunchType, "window");
} else {
app_info->SetString(kLaunchType, "unknown");
« no previous file with comments | « chrome/browser/autocomplete/extension_app_provider.cc ('k') | chrome/browser/automation/testing_automation_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698