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

Unified Diff: net/socket/client_socket_pool_manager.cc

Issue 215023002: Rename PrivateMode enum values: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 9 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
« no previous file with comments | « net/quic/test_tools/crypto_test_utils.cc ('k') | net/socket/ssl_client_socket_pool.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/client_socket_pool_manager.cc
diff --git a/net/socket/client_socket_pool_manager.cc b/net/socket/client_socket_pool_manager.cc
index 7ade7318c969859ffea3a40926a442bc64d2504f..f81b4bc1db598d528d7bb727c8159eb47fbd09a3 100644
--- a/net/socket/client_socket_pool_manager.cc
+++ b/net/socket/client_socket_pool_manager.cc
@@ -181,7 +181,7 @@ int InitSocketPoolHelper(const GURL& request_url,
NULL,
*proxy_host_port.get(),
ssl_config_for_proxy,
- kPrivacyModeDisabled,
+ PRIVACY_MODE_DISABLED,
load_flags,
force_spdy_over_ssl,
want_spdy_over_npn);
@@ -215,7 +215,7 @@ int InitSocketPoolHelper(const GURL& request_url,
}
// Change group name if privacy mode is enabled.
- if (privacy_mode == kPrivacyModeEnabled)
+ if (privacy_mode == PRIVACY_MODE_ENABLED)
connection_group = "pm/" + connection_group;
// Deal with SSL - which layers on top of any given proxy.
« no previous file with comments | « net/quic/test_tools/crypto_test_utils.cc ('k') | net/socket/ssl_client_socket_pool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698