Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(94)

Unified Diff: chrome/browser/prefs/proxy_prefs.cc

Issue 6468002: Implementation of getCurrentProxySettings for proxy settings API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/out/Debug
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/prefs/proxy_prefs.cc
diff --git a/chrome/browser/prefs/proxy_prefs.cc b/chrome/browser/prefs/proxy_prefs.cc
index bceb76b12adf269d9141a93d11e0350933343b69..4d7b55034c5710c3523dc8002d72b9e0473f3001 100644
--- a/chrome/browser/prefs/proxy_prefs.cc
+++ b/chrome/browser/prefs/proxy_prefs.cc
@@ -52,7 +52,7 @@ bool StringToProxyMode(const std::string& in_value, ProxyMode* out_value) {
return false;
}
-const char* GetProxyModeName(ProxyMode mode) {
+const char* ProxyModeToString(ProxyMode mode) {
return kProxyModeNames[mode];
}

Powered by Google App Engine
This is Rietveld 408576698