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

Unified Diff: gpu/config/gpu_control_list.cc

Issue 448853002: Move StringToLowerASCII to base namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | « gpu/command_buffer/service/test_helper.cc ('k') | net/base/data_url.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/config/gpu_control_list.cc
diff --git a/gpu/config/gpu_control_list.cc b/gpu/config/gpu_control_list.cc
index dc5c75c11f4c7ef5c789d3b67205ebcd4e495ffc..444c186b39bfc2dd50def14749e820a497e6197c 100644
--- a/gpu/config/gpu_control_list.cc
+++ b/gpu/config/gpu_control_list.cc
@@ -264,11 +264,11 @@ GpuControlList::OsType GpuControlList::OsInfo::StringToOsType(
GpuControlList::StringInfo::StringInfo(const std::string& string_op,
const std::string& string_value) {
op_ = StringToOp(string_op);
- value_ = StringToLowerASCII(string_value);
+ value_ = base::StringToLowerASCII(string_value);
}
bool GpuControlList::StringInfo::Contains(const std::string& value) const {
- std::string my_value = StringToLowerASCII(value);
+ std::string my_value = base::StringToLowerASCII(value);
switch (op_) {
case kContains:
return strstr(my_value.c_str(), value_.c_str()) != NULL;
« no previous file with comments | « gpu/command_buffer/service/test_helper.cc ('k') | net/base/data_url.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698