| Index: chrome/browser/chromeos/login/proxy_settings_dialog.cc
|
| ===================================================================
|
| --- chrome/browser/chromeos/login/proxy_settings_dialog.cc (revision 106380)
|
| +++ chrome/browser/chromeos/login/proxy_settings_dialog.cc (working copy)
|
| @@ -7,7 +7,7 @@
|
| #include "chrome/browser/chromeos/login/helper.h"
|
| #include "chrome/common/url_constants.h"
|
| #include "chrome/common/chrome_notification_types.h"
|
| -#include "content/common/notification_service.h"
|
| +#include "content/public/browser/notification_service.h"
|
| #include "ui/gfx/rect.h"
|
| #include "ui/gfx/size.h"
|
|
|
| @@ -48,10 +48,10 @@
|
|
|
| void ProxySettingsDialog::OnDialogClosed(const std::string& json_retval) {
|
| LoginHtmlDialog::OnDialogClosed(json_retval);
|
| - NotificationService::current()->Notify(
|
| + content::NotificationService::current()->Notify(
|
| chrome::NOTIFICATION_LOGIN_PROXY_CHANGED,
|
| - NotificationService::AllSources(),
|
| - NotificationService::NoDetails());
|
| + content::NotificationService::AllSources(),
|
| + content::NotificationService::NoDetails());
|
| }
|
|
|
| } // namespace chromeos
|
|
|