| Index: chrome/browser/extensions/tab_helper.cc
|
| diff --git a/chrome/browser/extensions/tab_helper.cc b/chrome/browser/extensions/tab_helper.cc
|
| index 25e4486b86bb7d29f2f0abb476dd2052020e519e..c266a3c9afd47c5758635008e8d3345733ddd34d 100644
|
| --- a/chrome/browser/extensions/tab_helper.cc
|
| +++ b/chrome/browser/extensions/tab_helper.cc
|
| @@ -36,9 +36,9 @@
|
| #include "chrome/browser/ui/web_applications/web_app_ui.h"
|
| #include "chrome/browser/web_applications/web_app.h"
|
| #include "chrome/common/chrome_switches.h"
|
| +#include "chrome/common/extensions/chrome_extension_messages.h"
|
| #include "chrome/common/extensions/extension_constants.h"
|
| #include "chrome/common/extensions/extension_icon_set.h"
|
| -#include "chrome/common/extensions/extension_messages.h"
|
| #include "chrome/common/extensions/manifest_handlers/app_launch_info.h"
|
| #include "chrome/common/extensions/manifest_handlers/icons_handler.h"
|
| #include "chrome/common/render_messages.h"
|
| @@ -60,6 +60,7 @@
|
| #include "extensions/browser/extension_registry.h"
|
| #include "extensions/browser/extension_system.h"
|
| #include "extensions/common/extension.h"
|
| +#include "extensions/common/extension_messages.h"
|
| #include "extensions/common/extension_resource.h"
|
| #include "extensions/common/extension_urls.h"
|
| #include "extensions/common/feature_switch.h"
|
| @@ -387,7 +388,7 @@ void TabHelper::DidNavigateMainFrame(
|
| bool TabHelper::OnMessageReceived(const IPC::Message& message) {
|
| bool handled = true;
|
| IPC_BEGIN_MESSAGE_MAP(TabHelper, message)
|
| - IPC_MESSAGE_HANDLER(ExtensionHostMsg_DidGetApplicationInfo,
|
| + IPC_MESSAGE_HANDLER(ChromeExtensionHostMsg_DidGetApplicationInfo,
|
| OnDidGetApplicationInfo)
|
| IPC_MESSAGE_HANDLER(ExtensionHostMsg_InlineWebstoreInstall,
|
| OnInlineWebstoreInstall)
|
| @@ -720,7 +721,7 @@ WebContents* TabHelper::GetAssociatedWebContents() const {
|
| }
|
|
|
| void TabHelper::GetApplicationInfo(int32 page_id) {
|
| - Send(new ExtensionMsg_GetApplicationInfo(routing_id(), page_id));
|
| + Send(new ChromeExtensionMsg_GetApplicationInfo(routing_id(), page_id));
|
| }
|
|
|
| void TabHelper::Observe(int type,
|
|
|