| 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 7eae6383bca955d81701c217ad190088cb310153..5e0a5403d7bf311be6027bfc6c99737b31416ecb 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_
|
|
|