| Index: trunk/src/chrome/browser/profiles/profile_impl_io_data.cc
|
| ===================================================================
|
| --- trunk/src/chrome/browser/profiles/profile_impl_io_data.cc (revision 289319)
|
| +++ trunk/src/chrome/browser/profiles/profile_impl_io_data.cc (working copy)
|
| @@ -68,9 +68,9 @@
|
| if (command_line.HasSwitch(switches::kUseSimpleCacheBackend)) {
|
| const std::string opt_value =
|
| command_line.GetSwitchValueASCII(switches::kUseSimpleCacheBackend);
|
| - if (base::LowerCaseEqualsASCII(opt_value, "off"))
|
| + if (LowerCaseEqualsASCII(opt_value, "off"))
|
| return net::CACHE_BACKEND_BLOCKFILE;
|
| - if (opt_value == "" || base::LowerCaseEqualsASCII(opt_value, "on"))
|
| + if (opt_value == "" || LowerCaseEqualsASCII(opt_value, "on"))
|
| return net::CACHE_BACKEND_SIMPLE;
|
| }
|
| const std::string experiment_name =
|
|
|