| Index: chrome/browser/extensions/api/web_navigation/web_navigation_api.cc
|
| diff --git a/chrome/browser/extensions/api/web_navigation/web_navigation_api.cc b/chrome/browser/extensions/api/web_navigation/web_navigation_api.cc
|
| index da4f9455b32405942f8ff04ffbf92c19f551b901..d87fc60f1604725fda4fd24c12083bcefcb2da31 100644
|
| --- a/chrome/browser/extensions/api/web_navigation/web_navigation_api.cc
|
| +++ b/chrome/browser/extensions/api/web_navigation/web_navigation_api.cc
|
| @@ -404,7 +404,7 @@ void WebNavigationEventRouter::Init() {
|
| chrome::NOTIFICATION_RETARGETING,
|
| content::NotificationService::AllSources());
|
| registrar_.Add(this,
|
| - content::NOTIFICATION_TAB_ADDED,
|
| + chrome::NOTIFICATION_TAB_ADDED,
|
| content::NotificationService::AllSources());
|
| registrar_.Add(this,
|
| content::NOTIFICATION_WEB_CONTENTS_DESTROYED,
|
| @@ -426,7 +426,7 @@ void WebNavigationEventRouter::Observe(
|
| break;
|
| }
|
|
|
| - case content::NOTIFICATION_TAB_ADDED:
|
| + case chrome::NOTIFICATION_TAB_ADDED:
|
| TabAdded(content::Details<WebContents>(details).ptr());
|
| break;
|
|
|
|
|