| 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 52c047b3f5a3a090b2a0ff29b662e6c312c90dcf..0963814dfe9779f2d6761433ad2ca2389c51b892 100644
|
| --- a/chrome/browser/profiles/profile_io_data.cc
|
| +++ b/chrome/browser/profiles/profile_io_data.cc
|
| @@ -161,7 +161,8 @@ bool IsSupportedDevToolsURL(const GURL& url, base::FilePath* path) {
|
|
|
| if (!url.SchemeIs(content::kChromeDevToolsScheme) ||
|
| url.host() != chrome::kChromeUIDevToolsHost ||
|
| - !base::StartsWithASCII(url.path(), bundled_path_prefix, false)) {
|
| + !base::StartsWith(url.path(), bundled_path_prefix,
|
| + base::CompareCase::INSENSITIVE_ASCII)) {
|
| return false;
|
| }
|
|
|
|
|