Index: chrome/browser/ui/intents/web_intent_picker_controller.cc |
diff --git a/chrome/browser/ui/intents/web_intent_picker_controller.cc b/chrome/browser/ui/intents/web_intent_picker_controller.cc |
index f8ceebc36962dd41ee77f19090e03622f80bd3a7..ccaa24873c636c276fa970579fac817225a5faa2 100644 |
--- a/chrome/browser/ui/intents/web_intent_picker_controller.cc |
+++ b/chrome/browser/ui/intents/web_intent_picker_controller.cc |
@@ -184,7 +184,7 @@ WebIntentPickerController::WebIntentPickerController( |
&wrapper->web_contents()->GetController(); |
registrar_.Add(this, content::NOTIFICATION_LOAD_START, |
content::Source<content::NavigationController>(controller)); |
- registrar_.Add(this, content::NOTIFICATION_TAB_CLOSING, |
+ registrar_.Add(this, chrome::NOTIFICATION_TAB_CLOSING, |
content::Source<content::NavigationController>(controller)); |
} |
@@ -242,7 +242,7 @@ void WebIntentPickerController::Observe( |
const content::NotificationSource& source, |
const content::NotificationDetails& details) { |
DCHECK(type == content::NOTIFICATION_LOAD_START || |
- type == content::NOTIFICATION_TAB_CLOSING); |
+ type == chrome::NOTIFICATION_TAB_CLOSING); |
ClosePicker(); |
} |