| Index: chrome/browser/ui/views/theme_install_bubble_view.cc
|
| ===================================================================
|
| --- chrome/browser/ui/views/theme_install_bubble_view.cc (revision 106380)
|
| +++ chrome/browser/ui/views/theme_install_bubble_view.cc (working copy)
|
| @@ -7,7 +7,7 @@
|
| #include "base/utf_string_conversions.h"
|
| #include "chrome/common/chrome_notification_types.h"
|
| #include "content/browser/tab_contents/tab_contents.h"
|
| -#include "content/common/notification_service.h"
|
| +#include "content/public/browser/notification_service.h"
|
| #include "grit/generated_resources.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
| #include "ui/base/resource/resource_bundle.h"
|
| @@ -49,27 +49,27 @@
|
| registrar_.Add(
|
| this,
|
| chrome::NOTIFICATION_BROWSER_THEME_CHANGED,
|
| - NotificationService::AllBrowserContextsAndSources());
|
| + content::NotificationService::AllBrowserContextsAndSources());
|
|
|
| // Close when we are installing an extension, not a theme.
|
| registrar_.Add(
|
| this,
|
| chrome::NOTIFICATION_NO_THEME_DETECTED,
|
| - NotificationService::AllSources());
|
| + content::NotificationService::AllSources());
|
| registrar_.Add(
|
| this,
|
| chrome::NOTIFICATION_EXTENSION_INSTALLED,
|
| - NotificationService::AllSources());
|
| + content::NotificationService::AllSources());
|
| registrar_.Add(
|
| this,
|
| chrome::NOTIFICATION_EXTENSION_INSTALL_ERROR,
|
| - NotificationService::AllSources());
|
| + content::NotificationService::AllSources());
|
|
|
| // Don't let the bubble overlap the confirm dialog.
|
| registrar_.Add(
|
| this,
|
| chrome::NOTIFICATION_EXTENSION_WILL_SHOW_CONFIRM_DIALOG,
|
| - NotificationService::AllSources());
|
| + content::NotificationService::AllSources());
|
|
|
| popup_ = new views::Widget;
|
| views::Widget::InitParams params(views::Widget::InitParams::TYPE_POPUP);
|
|
|