Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(937)

Unified Diff: chrome/browser/external_tab_container_win.cc

Issue 7835004: Moved the following IPCs out of chrome into content where they are handled by (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/external_tab_container_win.h ('k') | chrome/browser/plugin_observer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/external_tab_container_win.cc
===================================================================
--- chrome/browser/external_tab_container_win.cc (revision 99765)
+++ chrome/browser/external_tab_container_win.cc (working copy)
@@ -538,7 +538,9 @@
}
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 @@
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)
« no previous file with comments | « chrome/browser/external_tab_container_win.h ('k') | chrome/browser/plugin_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698