| Index: chrome/browser/web_applications/web_app.cc
|
| diff --git a/chrome/browser/web_applications/web_app.cc b/chrome/browser/web_applications/web_app.cc
|
| index aa377066e0e75bbc252e94160916e94020041d37..2522e55fe1788a9ca09e7d6eb1ffa0f3641c3eab 100644
|
| --- a/chrome/browser/web_applications/web_app.cc
|
| +++ b/chrome/browser/web_applications/web_app.cc
|
| @@ -390,7 +390,7 @@ std::string GenerateApplicationNameFromURL(const GURL& url) {
|
| std::string t;
|
| t.append(url.host());
|
| t.append("_");
|
| - t.append(url.path());
|
| + t.append(url.path().as_string());
|
| return t;
|
| }
|
|
|
|
|