summaryrefslogtreecommitdiffstats
path: root/chrome/browser/external_tab_container_win.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/external_tab_container_win.cc')
-rw-r--r--chrome/browser/external_tab_container_win.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/chrome/browser/external_tab_container_win.cc b/chrome/browser/external_tab_container_win.cc
index 00351e6..63349a9 100644
--- a/chrome/browser/external_tab_container_win.cc
+++ b/chrome/browser/external_tab_container_win.cc
@@ -538,7 +538,9 @@ bool ExternalTabContainer::IsPopup(const TabContents* source) const {
}
void ExternalTabContainer::UpdateTargetURL(TabContents* source,
+ int32 page_id,
const GURL& url) {
+ Browser::UpdateTargetURLHelper(source, page_id, url);
if (automation_) {
std::wstring url_string = CA2W(url.spec().c_str());
automation_->Send(
@@ -785,6 +787,11 @@ void ExternalTabContainer::FindReply(TabContents* tab,
active_match_ordinal, final_update);
}
+void ExternalTabContainer::CrashedPlugin(TabContents* tab,
+ const FilePath& plugin_path) {
+ Browser::CrashedPluginHelper(tab, plugin_path);
+}
+
bool ExternalTabContainer::OnMessageReceived(const IPC::Message& message) {
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(ExternalTabContainer, message)