| Index: chrome/browser/extensions/extension_proxy_api_helpers.cc
|
| diff --git a/chrome/browser/extensions/extension_proxy_api_helpers.cc b/chrome/browser/extensions/extension_proxy_api_helpers.cc
|
| index 6a9e14b274e09ebd9bb887a1d803859597b42e6e..3a26a176cc8332be4e6db9490e1c66cc52c2cba9 100644
|
| --- a/chrome/browser/extensions/extension_proxy_api_helpers.cc
|
| +++ b/chrome/browser/extensions/extension_proxy_api_helpers.cc
|
| @@ -64,7 +64,7 @@ bool GetProxyModeFromExtensionPref(const DictionaryValue* proxy_config,
|
| std::string proxy_mode;
|
|
|
| // We can safely assume that this is ASCII due to the allowed enumeration
|
| - // values specified in extension_api.json.
|
| + // values specified in the extension API JSON.
|
| proxy_config->GetStringASCII(keys::kProxyConfigMode, &proxy_mode);
|
| if (!ProxyPrefs::StringToProxyMode(proxy_mode, out)) {
|
| LOG(ERROR) << "Invalid mode for proxy settings: " << proxy_mode;
|
| @@ -154,7 +154,7 @@ bool GetProxyServer(const DictionaryValue* proxy_server,
|
| std::string scheme_string; // optional.
|
|
|
| // We can safely assume that this is ASCII due to the allowed enumeration
|
| - // values specified in extension_api.json.
|
| + // values specified in the extension API JSON.
|
| proxy_server->GetStringASCII(keys::kProxyConfigRuleScheme, &scheme_string);
|
|
|
| net::ProxyServer::Scheme scheme =
|
|
|