| Index: chrome/common/profiling.cc
|
| diff --git a/chrome/common/profiling.cc b/chrome/common/profiling.cc
|
| index 6dc28c6a813350bf07bf3a96f2037b4388888f32..06f1c7d223fda40ec2042a24f0937a26638d8e53 100644
|
| --- a/chrome/common/profiling.cc
|
| +++ b/chrome/common/profiling.cc
|
| @@ -58,7 +58,7 @@ std::string GetProfileName() {
|
| command_line.GetSwitchValueASCII(switches::kProcessType);
|
| std::string type = process_type.empty() ?
|
| std::string("browser") : std::string(process_type);
|
| - ReplaceSubstringsAfterOffset(&profile_name, 0, "{type}", type.c_str());
|
| + base::ReplaceSubstringsAfterOffset(&profile_name, 0, "{type}", type);
|
| }
|
| return profile_name;
|
| }
|
|
|