diff options
Diffstat (limited to 'chrome/browser/net/net_pref_observer.cc')
-rw-r--r-- | chrome/browser/net/net_pref_observer.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/net/net_pref_observer.cc b/chrome/browser/net/net_pref_observer.cc index 8a0d08e..abfcc46 100644 --- a/chrome/browser/net/net_pref_observer.cc +++ b/chrome/browser/net/net_pref_observer.cc @@ -10,9 +10,9 @@ #include "chrome/browser/prerender/prerender_manager.h" #include "chrome/browser/profiles/profile.h" #include "chrome/browser/trials/http_throttling_trial.h" +#include "chrome/common/chrome_notification_types.h" #include "chrome/common/pref_names.h" #include "content/browser/browser_thread.h" -#include "content/common/notification_type.h" #include "content/common/notification_details.h" #include "net/http/http_stream_factory.h" #include "net/url_request/url_request_throttler_manager.h" @@ -45,10 +45,10 @@ NetPrefObserver::~NetPrefObserver() { DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); } -void NetPrefObserver::Observe(NotificationType type, +void NetPrefObserver::Observe(int type, const NotificationSource& source, const NotificationDetails& details) { - DCHECK_EQ(type.value, NotificationType::PREF_CHANGED); + DCHECK_EQ(type, chrome::NOTIFICATION_PREF_CHANGED); std::string* pref_name = Details<std::string>(details).ptr(); ApplySettings(pref_name); |