summaryrefslogtreecommitdiffstats
path: root/chrome/browser/debugger/debugger_node.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/debugger/debugger_node.cc')
-rw-r--r--chrome/browser/debugger/debugger_node.cc17
1 files changed, 11 insertions, 6 deletions
diff --git a/chrome/browser/debugger/debugger_node.cc b/chrome/browser/debugger/debugger_node.cc
index 8a28b49..a7f419c 100644
--- a/chrome/browser/debugger/debugger_node.cc
+++ b/chrome/browser/debugger/debugger_node.cc
@@ -13,6 +13,7 @@
#include "chrome/browser/renderer_host/render_view_host.h"
#include "chrome/browser/tab_contents/web_contents.h"
#include "chrome/browser/debugger/debugger_shell.h"
+#include "chrome/common/notification_service.h"
DebuggerNode::DebuggerNode() : valid_(true), observing_(false), data_(NULL) {
}
@@ -159,13 +160,15 @@ BrowserNode::BrowserNode(Browser *b) {
NotificationService* service = NotificationService::current();
DCHECK(service);
- service->AddObserver(this, NOTIFY_BROWSER_CLOSED, Source<Browser>(b));
+ service->AddObserver(
+ this, NotificationType::BROWSER_CLOSED, Source<Browser>(b));
observing_ = true;
}
void BrowserNode::StopObserving(NotificationService *service) {
Browser *b = static_cast<Browser*>(data_);
- service->RemoveObserver(this, NOTIFY_BROWSER_CLOSED, Source<Browser>(b));
+ service->RemoveObserver(
+ this, NotificationType::BROWSER_CLOSED, Source<Browser>(b));
}
BrowserNode* BrowserNode::BrowserAtIndex(int index) {
@@ -242,7 +245,8 @@ TabListNode::TabListNode(Browser* b) {
NotificationService* service = NotificationService::current();
DCHECK(service);
- service->AddObserver(this, NOTIFY_BROWSER_CLOSED, Source<Browser>(b));
+ service->AddObserver(
+ this, NotificationType::BROWSER_CLOSED, Source<Browser>(b));
observing_ = true;
}
@@ -263,7 +267,8 @@ Browser* TabListNode::GetBrowser() {
void TabListNode::StopObserving(NotificationService *service) {
Browser *b = static_cast<Browser*>(data_);
- service->RemoveObserver(this, NOTIFY_BROWSER_CLOSED, Source<Browser>(b));
+ service->RemoveObserver(
+ this, NotificationType::BROWSER_CLOSED, Source<Browser>(b));
}
v8::Handle<v8::Value> TabListNode::IndexGetter(uint32_t index,
@@ -286,7 +291,7 @@ TabNode::TabNode(TabContents *c) {
NotificationService* service = NotificationService::current();
DCHECK(service);
- service->AddObserver(this, NOTIFY_TAB_CLOSING,
+ service->AddObserver(this, NotificationType::TAB_CLOSING,
Source<NavigationController>(c->controller()));
observing_ = true;
}
@@ -296,7 +301,7 @@ TabNode::~TabNode() {
void TabNode::StopObserving(NotificationService *service) {
NavigationController *c = static_cast<NavigationController*>(data_);
- service->RemoveObserver(this, NOTIFY_TAB_CLOSING,
+ service->RemoveObserver(this, NotificationType::TAB_CLOSING,
Source<NavigationController>(c));
}