diff options
author | rch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-01 01:28:53 +0000 |
---|---|---|
committer | rch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-01 01:28:53 +0000 |
commit | 314b03990f31330e847c384fbb9426ca5e6c1a58 (patch) | |
tree | 52eff81fb4eb0b127ef56ace4c8e3b155e8513ed /jingle | |
parent | 9decc62c6eb9f834323498611f8e112ff240aa14 (diff) | |
download | chromium_src-314b03990f31330e847c384fbb9426ca5e6c1a58.zip chromium_src-314b03990f31330e847c384fbb9426ca5e6c1a58.tar.gz chromium_src-314b03990f31330e847c384fbb9426ca5e6c1a58.tar.bz2 |
Rename PrivateMode enum values:
kPrivacyModeDisabled => PRIVACY_MODE_DISABLED
kPrivacyModeEnabled => PRIVACY_MODE_ENABLED
To match the chromium style guide:
Though the Google C++ Style Guide now says to use kConstantNaming for enums,
Chromium was written using MACRO_STYLE naming. Continue to use this style for consistency.
R=mef@chromium.org
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=260281
Review URL: https://codereview.chromium.org/215023002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@260729 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'jingle')
-rw-r--r-- | jingle/glue/proxy_resolving_client_socket.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jingle/glue/proxy_resolving_client_socket.cc b/jingle/glue/proxy_resolving_client_socket.cc index f0b98d0..6216906 100644 --- a/jingle/glue/proxy_resolving_client_socket.cc +++ b/jingle/glue/proxy_resolving_client_socket.cc @@ -192,7 +192,7 @@ void ProxyResolvingClientSocket::ProcessProxyResolveDone(int status) { // Now that we have resolved the proxy, we need to connect. status = net::InitSocketHandleForRawConnect( dest_host_port_pair_, network_session_.get(), proxy_info_, ssl_config_, - ssl_config_, net::kPrivacyModeDisabled, bound_net_log_, transport_.get(), + ssl_config_, net::PRIVACY_MODE_DISABLED, bound_net_log_, transport_.get(), connect_callback_); if (status != net::ERR_IO_PENDING) { // Since this method is always called asynchronously. it is OK to call |