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

Unified Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 1172183002: Move StartsWith[ASCII] to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@string_util3
Patch Set: merger Created 5 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
Index: content/browser/renderer_host/render_process_host_impl.cc
diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
index ee8c6a14552e0855fd4ef6679a658452e5ecf3e2..db5ea5d7a4f71b2d7cb1e95f9a9fff93aee979b7 100644
--- a/content/browser/renderer_host/render_process_host_impl.cc
+++ b/content/browser/renderer_host/render_process_host_impl.cc
@@ -2251,7 +2251,7 @@ void RenderProcessHostImpl::SetBackgrounded(bool backgrounded) {
// absence of field trials to get coverage on the perf waterfall.
base::FieldTrial* trial =
base::FieldTrialList::Find("BackgroundRendererProcesses");
- if (!trial || !StartsWithASCII(trial->group_name(), "Disallow", true)) {
+ if (!trial || !base::StartsWithASCII(trial->group_name(), "Disallow", true)) {
child_process_launcher_->SetProcessBackgrounded(backgrounded);
}
#else

Powered by Google App Engine
This is Rietveld 408576698