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

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

Issue 8467012: Refactor proxy handling for ChromeOS to not go through the CrosSettings interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments. Created 9 years, 1 month 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/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 c42f4ee099840b282d63ffe114037580a046ca38..e1b917ae3751fa373c1cec3cc9dc58e25c7d196f 100644
--- a/chrome/browser/chromeos/proxy_config_service_impl.cc
+++ b/chrome/browser/chromeos/proxy_config_service_impl.cc
@@ -29,6 +29,28 @@ namespace chromeos {
namespace {
+// Shoud we try to push this to base?
+// Helper comparator functor for the find_if call in |findIfEqual|
+template <class T>
+class EqualsComparator{
+ public:
+ explicit EqualsComparator(const T& key) : key_(key) { }
+ bool operator() (const T& element) {
+ return element.Equals(key_);
+ }
+ private:
+ const T& key_;
+};
+
+// Tiny stl helper function to allow using the find_if syntax on objects that
Mattias Nissler (ping if slow) 2011/11/14 08:35:45 s/stl/STL/
pastarmovj 2011/11/14 14:20:34 Done.
+// doesn't use the == operator but implement the Equals function which is the
Mattias Nissler (ping if slow) 2011/11/14 08:35:45 s/the == operator/operator==/
pastarmovj 2011/11/14 14:20:34 Done.
+// quasi standard with the coding style we have.
+template<class InputIterator, class T>
+InputIterator findIfEqual(InputIterator first, InputIterator last,
+ const T& key) {
Mattias Nissler (ping if slow) 2011/11/14 08:35:45 indentation
pastarmovj 2011/11/14 14:20:34 Done.
+ return std::find_if(first, last, EqualsComparator<T>(key));
+}
+
const char* ModeToString(ProxyConfigServiceImpl::ProxyConfig::Mode mode) {
switch (mode) {
case ProxyConfigServiceImpl::ProxyConfig::MODE_DIRECT:
@@ -471,6 +493,22 @@ bool ProxyConfigServiceImpl::UISetProxyConfigBypassRules(
return true;
}
+void ProxyConfigServiceImpl::AddNotificationCallback(base::Closure callback) {
+
+ std::vector<base::Closure>::iterator iter =
+ findIfEqual(callbacks_.begin(), callbacks_.end(), callback);
+ if (iter == callbacks_.end())
+ callbacks_.push_back(callback);
+}
+
+void ProxyConfigServiceImpl::RemoveNotificationCallback(
+ base::Closure callback) {
+ std::vector<base::Closure>::iterator iter =
+ findIfEqual(callbacks_.begin(), callbacks_.end(), callback);
+ if (iter != callbacks_.end())
+ callbacks_.erase(iter);
+}
+
void ProxyConfigServiceImpl::OnProxyConfigChanged(
ProxyPrefs::ConfigState config_state,
const net::ProxyConfig& config) {
@@ -762,6 +800,16 @@ void ProxyConfigServiceImpl::OnUISetCurrentNetwork(const Network* network) {
<< ", " << ModeToString(current_ui_config_.mode)
<< ", " << ConfigStateToString(current_ui_config_.state)
<< ", modifiable:" << current_ui_config_.user_modifiable;
+ // Notify whoever is interested in this change.
+ std::vector<base::Closure>::iterator iter = callbacks_.begin();
+ while (iter != callbacks_.end()) {
+ if (iter->is_null()) {
+ iter = callbacks_.erase(iter);
+ } else {
+ iter->Run();
+ ++iter;
+ }
+ }
}
void ProxyConfigServiceImpl::ResetUICache() {
« no previous file with comments | « chrome/browser/chromeos/proxy_config_service_impl.h ('k') | chrome/browser/chromeos/proxy_cros_settings_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698