| Index: extensions/common/user_script.cc
|
| diff --git a/extensions/common/user_script.cc b/extensions/common/user_script.cc
|
| index ddcfd8077777e9844c72dc22919c55fa34042993..5be488067e7fece85c8ee7ffbe110d2f7bedf940 100644
|
| --- a/extensions/common/user_script.cc
|
| +++ b/extensions/common/user_script.cc
|
| @@ -51,8 +51,8 @@ int UserScript::GenerateUserScriptID() {
|
|
|
| bool UserScript::IsURLUserScript(const GURL& url,
|
| const std::string& mime_type) {
|
| - return EndsWith(url.ExtractFileName(), kFileExtension, false) &&
|
| - mime_type != "text/html";
|
| + return base::EndsWith(url.ExtractFileName(), kFileExtension, false) &&
|
| + mime_type != "text/html";
|
| }
|
|
|
| // static
|
|
|