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

Unified Diff: content/browser/transition_request_manager.cc

Issue 803813003: Make callers of CommandLine use it via the base:: namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 | « content/browser/transition_browsertest.cc ('k') | content/browser/transition_request_manager_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/transition_request_manager.cc
diff --git a/content/browser/transition_request_manager.cc b/content/browser/transition_request_manager.cc
index d6df02eeb240d559dd146ce137ed795e4870a9f1..f5f1e9762a412a6f1e6b362da7a2da6cee3790ff 100644
--- a/content/browser/transition_request_manager.cc
+++ b/content/browser/transition_request_manager.cc
@@ -139,10 +139,10 @@ bool TransitionRequestManager::TransitionRequestData::FindEntry(
TransitionLayerData* transition_data) {
DCHECK(!allowed_entries_.empty());
CHECK(transition_data);
- CHECK(CommandLine::ForCurrentProcess()->HasSwitch(
+ CHECK(base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kEnableExperimentalWebPlatformFeatures) ||
- base::FieldTrialList::FindFullName("NavigationTransitions") ==
- "Enabled");
+ base::FieldTrialList::FindFullName("NavigationTransitions") ==
+ "Enabled");
for (const AllowedEntry& allowed_entry : allowed_entries_) {
// Note: This is a small subset of the CSP source-list standard; once the
« no previous file with comments | « content/browser/transition_browsertest.cc ('k') | content/browser/transition_request_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698