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

Unified Diff: content/public/browser/web_intents_dispatcher.h

Issue 8934011: Rename IntentsHost -> WebIntentsDispatcher and IntentsDispatcher -> WebIntentsHost. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
Index: content/public/browser/web_intents_dispatcher.h
diff --git a/content/public/browser/intents_host.h b/content/public/browser/web_intents_dispatcher.h
similarity index 85%
rename from content/public/browser/intents_host.h
rename to content/public/browser/web_intents_dispatcher.h
index 5eb650787de431013a304d2f35bc1b3cc7037644..b1176b6213e373c0e571f73ed48b02a6282a9644 100644
--- a/content/public/browser/intents_host.h
+++ b/content/public/browser/web_intents_dispatcher.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CONTENT_PUBLIC_BROWSER_INTENTS_HOST_H_
-#define CONTENT_PUBLIC_BROWSER_INTENTS_HOST_H_
+#ifndef CONTENT_PUBLIC_BROWSER_WEB_INTENTS_DISPATCHER_H_
+#define CONTENT_PUBLIC_BROWSER_WEB_INTENTS_DISPATCHER_H_
#include "base/callback.h"
#include "webkit/glue/web_intent_reply_data.h"
@@ -23,9 +23,9 @@ namespace content {
// code can then read the intent data, create UI to pick the service, and
// create a new context for that service. At that point, it should call
// DispatchIntent, which will connect the object to the new context.
-class CONTENT_EXPORT IntentsHost {
+class CONTENT_EXPORT WebIntentsDispatcher {
public:
- virtual ~IntentsHost() {}
+ virtual ~WebIntentsDispatcher() {}
// Get the intent data being dispatched.
virtual const webkit_glue::WebIntentData& GetIntent() = 0;
@@ -44,4 +44,4 @@ class CONTENT_EXPORT IntentsHost {
} // namespace content
-#endif // CONTENT_PUBLIC_BROWSER_INTENTS_HOST_H_
+#endif // CONTENT_PUBLIC_BROWSER_WEB_INTENTS_DISPATCHER_H_

Powered by Google App Engine
This is Rietveld 408576698