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); |
return true; |
} |