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

Unified Diff: chrome/browser/chromeos/proxy_config_service_impl.cc

Issue 10915106: Renaming instances of "flimflam" with "shill", now that we're only (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Upload after merge Created 8 years, 3 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 | « chrome/browser/chromeos/proxy_config_service_impl.h ('k') | chrome/browser/net/proxy_service_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/proxy_config_service_impl.cc
diff --git a/chrome/browser/chromeos/proxy_config_service_impl.cc b/chrome/browser/chromeos/proxy_config_service_impl.cc
index 4d24df5534b87af9ca864956339e975db136d9da..03228db25d8021faa523e7b5d9f7ced8f85d7fa1 100644
--- a/chrome/browser/chromeos/proxy_config_service_impl.cc
+++ b/chrome/browser/chromeos/proxy_config_service_impl.cc
@@ -392,7 +392,7 @@ ProxyConfigServiceImpl::ProxyConfigServiceImpl(PrefService* pref_service)
FetchProxyPolicy();
- // Register for flimflam network notifications.
+ // Register for shill network notifications.
NetworkLibrary* network_lib = CrosLibrary::Get()->GetNetworkLibrary();
OnActiveNetworkChanged(network_lib, network_lib->active_network());
network_lib->AddNetworkManagerObserver(this);
@@ -600,7 +600,7 @@ void ProxyConfigServiceImpl::Observe(
void ProxyConfigServiceImpl::OnUISetProxyConfig() {
if (current_ui_network_.empty())
return;
- // Update config to flimflam.
+ // Update config to shill.
std::string value;
if (current_ui_config_.SerializeForNetwork(&value)) {
VLOG(1) << "Set proxy (mode=" << current_ui_config_.mode
@@ -655,7 +655,7 @@ void ProxyConfigServiceImpl::OnActiveNetworkChanged(NetworkLibrary* network_lib,
// Register observer for new network.
network_lib->AddNetworkObserver(active_network_, this);
- // If necessary, migrate config to flimflam.
+ // If necessary, migrate config to shill.
if (active_network->proxy_config().empty() && !device_config_.empty()) {
VLOG(1) << "Try migrating device config to " << active_network_;
SetProxyConfigForNetwork(active_network_, device_config_, true);
« no previous file with comments | « chrome/browser/chromeos/proxy_config_service_impl.h ('k') | chrome/browser/net/proxy_service_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698