Chromium Code Reviews| Index: chrome/browser/profiles/profile_io_data.cc |
| diff --git a/chrome/browser/profiles/profile_io_data.cc b/chrome/browser/profiles/profile_io_data.cc |
| index 11b38772b5b3193d09e97ee1b01c436ae722c135..f18a7335b904473414effeceb6bf93b696aff371 100644 |
| --- a/chrome/browser/profiles/profile_io_data.cc |
| +++ b/chrome/browser/profiles/profile_io_data.cc |
| @@ -222,7 +222,8 @@ bool IsSupportedDevToolsURL(const GURL& url, base::FilePath* path) { |
| if (inspector_dir.empty()) |
| return false; |
| - *path = inspector_dir.AppendASCII(relative_path); |
| + base::FilePath debug_path = inspector_dir.AppendASCII("debug"); |
| + *path = debug_path.AppendASCII(relative_path); |
|
mmenke
2016/08/31 00:04:29
Maybe *path = inspector_dir.AppendASCII("debug").A
mmenke
2016/08/31 00:38:40
Also, will this result in leaving junk in the old
chenwilliam
2016/08/31 00:53:06
Done. I added a comment. This path needs to match
|
| return true; |
| } |