| Index: chrome/browser/tabs/tab_strip_model.cc
|
| ===================================================================
|
| --- chrome/browser/tabs/tab_strip_model.cc (revision 91771)
|
| +++ chrome/browser/tabs/tab_strip_model.cc (working copy)
|
| @@ -22,6 +22,7 @@
|
| #include "chrome/browser/tabs/tab_strip_model_delegate.h"
|
| #include "chrome/browser/tabs/tab_strip_model_order_controller.h"
|
| #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
|
| +#include "chrome/common/chrome_notification_types.h"
|
| #include "chrome/common/extensions/extension.h"
|
| #include "chrome/common/url_constants.h"
|
| #include "content/browser/renderer_host/render_process_host.h"
|
| @@ -69,7 +70,7 @@
|
| NotificationType::TAB_CONTENTS_DESTROYED,
|
| NotificationService::AllSources());
|
| registrar_.Add(this,
|
| - NotificationType::EXTENSION_UNLOADED,
|
| + chrome::EXTENSION_UNLOADED,
|
| Source<Profile>(profile_));
|
| order_controller_ = new TabStripModelOrderController(this);
|
| }
|
| @@ -1004,7 +1005,7 @@
|
| break;
|
| }
|
|
|
| - case NotificationType::EXTENSION_UNLOADED: {
|
| + case chrome::EXTENSION_UNLOADED: {
|
| const Extension* extension =
|
| Details<UnloadedExtensionInfo>(details)->extension;
|
| // Iterate backwards as we may remove items while iterating.
|
|
|