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

Unified Diff: chrome/browser/about_flags.cc

Issue 2899783002: Move DevTools out of ash and turn it to a component. (Closed)
Patch Set: add README.md Created 3 years, 6 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 | « ash/shell.cc ('k') | chrome/browser/ui/webui/inspect_ui.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/about_flags.cc
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
index a82600c6606b64628f786eca1d8093bca558d48b..03318dd7c28675831b29a895af8cdf6878470245 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -2731,9 +2731,9 @@ const FeatureEntry kFeatureEntries[] = {
#endif // OS_ANDROID
#if defined(OS_CHROMEOS)
- {ui::devtools::kEnableUiDevTools, flag_descriptions::kUiDevToolsName,
+ {ui_devtools::kEnableUiDevTools, flag_descriptions::kUiDevToolsName,
flag_descriptions::kUiDevToolsDescription, kOsCrOS,
- SINGLE_VALUE_TYPE(ui::devtools::kEnableUiDevTools)},
+ SINGLE_VALUE_TYPE(ui_devtools::kEnableUiDevTools)},
#endif // defined(OS_CHROMEOS)
{"enable-autofill-credit-card-last-used-date-display",
@@ -3127,7 +3127,7 @@ bool SkipConditionalFeatureEntry(const FeatureEntry& entry) {
}
// enable-ui-devtools is only available on for non Stable channels.
- if (!strcmp(ui::devtools::kEnableUiDevTools, entry.internal_name) &&
+ if (!strcmp(ui_devtools::kEnableUiDevTools, entry.internal_name) &&
channel == version_info::Channel::STABLE) {
return true;
}
« no previous file with comments | « ash/shell.cc ('k') | chrome/browser/ui/webui/inspect_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698