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

Unified Diff: content/browser/tab_contents/tab_contents.cc

Issue 8934011: Rename IntentsHost -> WebIntentsDispatcher and IntentsDispatcher -> WebIntentsHost. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to head Created 9 years 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 | « content/browser/intents/web_intents_dispatcher_impl.cc ('k') | content/content_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/tab_contents/tab_contents.cc
diff --git a/content/browser/tab_contents/tab_contents.cc b/content/browser/tab_contents/tab_contents.cc
index 522dbed69fcc3833ef103b1b21fa2b9f6a56fc40..a5219cfb70c1db9649a1df5cc5563889fdffa7ca 100644
--- a/content/browser/tab_contents/tab_contents.cc
+++ b/content/browser/tab_contents/tab_contents.cc
@@ -18,7 +18,7 @@
#include "content/browser/download/download_stats.h"
#include "content/browser/host_zoom_map.h"
#include "content/browser/in_process_webkit/session_storage_namespace.h"
-#include "content/browser/intents/intents_host_impl.h"
+#include "content/browser/intents/web_intents_dispatcher_impl.h"
#include "content/browser/load_from_memory_cache_details.h"
#include "content/browser/load_notification_details.h"
#include "content/browser/renderer_host/render_process_host_impl.h"
@@ -926,8 +926,9 @@ void TabContents::OnRegisterIntentService(const string16& action,
void TabContents::OnWebIntentDispatch(const webkit_glue::WebIntentData& intent,
int intent_id) {
- IntentsHostImpl* intents_host = new IntentsHostImpl(this, intent, intent_id);
- delegate_->WebIntentDispatch(this, intents_host);
+ WebIntentsDispatcherImpl* intents_dispatcher =
+ new WebIntentsDispatcherImpl(this, intent, intent_id);
+ delegate_->WebIntentDispatch(this, intents_dispatcher);
}
void TabContents::OnDidStartProvisionalLoadForFrame(int64 frame_id,
« no previous file with comments | « content/browser/intents/web_intents_dispatcher_impl.cc ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698