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

Unified Diff: content/browser/intents/web_intents_dispatcher_impl.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.h ('k') | content/browser/tab_contents/tab_contents.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/intents/web_intents_dispatcher_impl.cc
diff --git a/content/browser/intents/intents_host_impl.cc b/content/browser/intents/web_intents_dispatcher_impl.cc
similarity index 62%
rename from content/browser/intents/intents_host_impl.cc
rename to content/browser/intents/web_intents_dispatcher_impl.cc
index e3708dbfb8dc4063729de5e9239826b2c638ad5c..a7e1402ebc512b6c718ec5f436d05f2520d40c47 100644
--- a/content/browser/intents/intents_host_impl.cc
+++ b/content/browser/intents/web_intents_dispatcher_impl.cc
@@ -2,34 +2,35 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "content/browser/intents/intents_host_impl.h"
+#include "content/browser/intents/web_intents_dispatcher_impl.h"
#include "content/browser/intents/intent_injector.h"
#include "content/common/intents_messages.h"
#include "webkit/glue/web_intent_data.h"
#include "webkit/glue/web_intent_reply_data.h"
-IntentsHostImpl::IntentsHostImpl(TabContents* source_tab,
- const webkit_glue::WebIntentData& intent,
- int intent_id)
+WebIntentsDispatcherImpl::WebIntentsDispatcherImpl(
+ TabContents* source_tab,
+ const webkit_glue::WebIntentData& intent,
+ int intent_id)
: TabContentsObserver(source_tab),
intent_(intent),
intent_id_(intent_id),
intent_injector_(NULL) {}
-IntentsHostImpl::~IntentsHostImpl() {}
+WebIntentsDispatcherImpl::~WebIntentsDispatcherImpl() {}
-const webkit_glue::WebIntentData& IntentsHostImpl::GetIntent() {
+const webkit_glue::WebIntentData& WebIntentsDispatcherImpl::GetIntent() {
return intent_;
}
-void IntentsHostImpl::DispatchIntent(TabContents* destination_tab) {
+void WebIntentsDispatcherImpl::DispatchIntent(TabContents* destination_tab) {
DCHECK(!intent_injector_);
intent_injector_ = new IntentInjector(destination_tab);
intent_injector_->SetIntent(this, intent_);
}
-void IntentsHostImpl::SendReplyMessage(
+void WebIntentsDispatcherImpl::SendReplyMessage(
webkit_glue::WebIntentReplyType reply_type,
const string16& data) {
intent_injector_ = NULL;
@@ -43,11 +44,12 @@ void IntentsHostImpl::SendReplyMessage(
reply_notifier_.Run();
}
-void IntentsHostImpl::RegisterReplyNotification(const base::Closure& closure) {
+void WebIntentsDispatcherImpl::RegisterReplyNotification(
+ const base::Closure& closure) {
reply_notifier_ = closure;
}
-void IntentsHostImpl::TabContentsDestroyed(TabContents* tab) {
+void WebIntentsDispatcherImpl::TabContentsDestroyed(TabContents* tab) {
if (intent_injector_)
intent_injector_->SourceTabContentsDestroyed(tab);
« no previous file with comments | « content/browser/intents/web_intents_dispatcher_impl.h ('k') | content/browser/tab_contents/tab_contents.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698