| Index: chrome/browser/external_tab_container.cc
|
| ===================================================================
|
| --- chrome/browser/external_tab_container.cc (revision 14694)
|
| +++ chrome/browser/external_tab_container.cc (working copy)
|
| @@ -8,6 +8,7 @@
|
| #include "base/win_util.h"
|
| #include "chrome/browser/automation/automation_provider.h"
|
| #include "chrome/browser/browser.h"
|
| +#include "chrome/browser/extensions/extension_function_dispatcher.h"
|
| #include "chrome/browser/load_notification_details.h"
|
| #include "chrome/browser/profile.h"
|
| #include "chrome/browser/tab_contents/provisional_load_details.h"
|
| @@ -162,7 +163,7 @@
|
| break;
|
| default:
|
| break;
|
| - }
|
| + }
|
| }
|
|
|
| void ExternalTabContainer::NavigationStateChanged(const TabContents* source,
|
| @@ -398,6 +399,12 @@
|
| return _wcsicmp(class_name.c_str(), chrome::kExternalTabWindowClass) == 0;
|
| }
|
|
|
| +ExtensionFunctionDispatcher* ExternalTabContainer::
|
| + CreateExtensionFunctionDispatcher(RenderViewHost* render_view_host,
|
| + const std::string& extension_id) {
|
| + return new ExtensionFunctionDispatcher(render_view_host, NULL, extension_id);
|
| +}
|
| +
|
| // static
|
| ExternalTabContainer* ExternalTabContainer::GetContainerForTab(
|
| HWND tab_window) {
|
|
|