Index: chrome/browser/extensions/extension_protocols.cc |
diff --git a/chrome/browser/extensions/extension_protocols.cc b/chrome/browser/extensions/extension_protocols.cc |
index e3e9865cb89f808ed4bd5c33ea136bf0525567ce..cad8fdaafa2f1195d8ac118de093644de3114bde 100644 |
--- a/chrome/browser/extensions/extension_protocols.cc |
+++ b/chrome/browser/extensions/extension_protocols.cc |
@@ -164,7 +164,7 @@ class URLRequestResourceBundleJob : public net::URLRequestSimpleJob { |
if (StartsWithASCII(*read_mime_type, "text/", false)) { |
// All of our HTML files should be UTF-8 and for other resource types |
// (like images), charset doesn't matter. |
- DCHECK(IsStringUTF8(*data)); |
+ DCHECK(base::IsStringUTF8(*data)); |
*charset = "utf-8"; |
} |
int result = read_result ? net::OK : net::ERR_INVALID_URL; |