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

Unified Diff: content/public/browser/web_contents_delegate.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/public/browser/web_contents_delegate.h ('k') | content/public/browser/web_intents_dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/web_contents_delegate.cc
diff --git a/content/public/browser/web_contents_delegate.cc b/content/public/browser/web_contents_delegate.cc
index eccd4cfe789b67541050cedbaed1cb14399668a1..10022a040a15b53c0ddbad26f1804f392efb97dd 100644
--- a/content/public/browser/web_contents_delegate.cc
+++ b/content/public/browser/web_contents_delegate.cc
@@ -9,9 +9,9 @@
#include "base/memory/singleton.h"
#include "content/browser/javascript_dialogs.h"
#include "content/browser/tab_contents/tab_contents.h"
-#include "content/public/browser/intents_host.h"
#include "content/public/browser/notification_service.h"
#include "content/public/browser/notification_types.h"
+#include "content/public/browser/web_intents_dispatcher.h"
#include "content/public/common/url_constants.h"
#include "ui/gfx/rect.h"
#include "webkit/glue/web_intent_data.h"
@@ -304,10 +304,10 @@ void WebContentsDelegate::RegisterIntentHandler(TabContents* tab,
void WebContentsDelegate::WebIntentDispatch(
TabContents* tab,
- content::IntentsHost* intents_host) {
- // The caller passes this method ownership of the |intents_host|, but this
- // empty implementation will not use it, so we delete it immediately.
- delete intents_host;
+ content::WebIntentsDispatcher* intents_dispatcher) {
+ // The caller passes this method ownership of the |intents_dispatcher|, but
+ // this empty implementation will not use it, so we delete it immediately.
+ delete intents_dispatcher;
}
void WebContentsDelegate::FindReply(TabContents* tab,
« no previous file with comments | « content/public/browser/web_contents_delegate.h ('k') | content/public/browser/web_intents_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698