diff options
Diffstat (limited to 'chrome/browser/chromeos/network_state_notifier.cc')
-rw-r--r-- | chrome/browser/chromeos/network_state_notifier.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/chromeos/network_state_notifier.cc b/chrome/browser/chromeos/network_state_notifier.cc index 5cb45c5..74f7eee 100644 --- a/chrome/browser/chromeos/network_state_notifier.cc +++ b/chrome/browser/chromeos/network_state_notifier.cc @@ -7,9 +7,10 @@ #include "base/message_loop.h" #include "base/time.h" #include "chrome/browser/chromeos/cros/cros_library.h" +#include "chrome/common/chrome_notification_types.h" #include "content/browser/browser_thread.h" +#include "content/common/content_notification_types.h" #include "content/common/notification_service.h" -#include "content/common/notification_type.h" namespace chromeos { @@ -69,7 +70,7 @@ void NetworkStateNotifier::UpdateNetworkState( state_ = new_state; NetworkStateDetails details(state_); NotificationService::current()->Notify( - NotificationType::NETWORK_STATE_CHANGED, + chrome::NOTIFICATION_NETWORK_STATE_CHANGED, NotificationService::AllSources(), Details<NetworkStateDetails>(&details)); }; |