| Index: content/browser/debugger/devtools_window.cc
|
| ===================================================================
|
| --- content/browser/debugger/devtools_window.cc (revision 91771)
|
| +++ content/browser/debugger/devtools_window.cc (working copy)
|
| @@ -23,6 +23,7 @@
|
| #include "chrome/browser/ui/browser_list.h"
|
| #include "chrome/browser/ui/browser_window.h"
|
| #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
|
| +#include "chrome/common/chrome_notification_types.h"
|
| #include "chrome/common/pref_names.h"
|
| #include "chrome/common/render_messages.h"
|
| #include "chrome/common/url_constants.h"
|
| @@ -128,7 +129,7 @@
|
| Source<NavigationController>(&tab_contents_->controller()));
|
| registrar_.Add(
|
| this,
|
| - NotificationType::BROWSER_THEME_CHANGED,
|
| + chrome::BROWSER_THEME_CHANGED,
|
| Source<ThemeService>(ThemeServiceFactory::GetForProfile(profile_)));
|
| TabContents* tab = inspected_rvh->delegate()->GetAsTabContents();
|
| if (tab)
|
| @@ -412,7 +413,7 @@
|
| NotifyCloseListener();
|
| delete this;
|
| }
|
| - } else if (type == NotificationType::BROWSER_THEME_CHANGED) {
|
| + } else if (type == chrome::BROWSER_THEME_CHANGED) {
|
| UpdateTheme();
|
| }
|
| }
|
|
|