Index: content/public/browser/web_contents_delegate.h |
diff --git a/content/public/browser/web_contents_delegate.h b/content/public/browser/web_contents_delegate.h |
index 93433d98ce1c0d9fc36076e344e56b70f8b756ce..77c3bae0c44820b1ac62d852b31f88cdf30ba225 100644 |
--- a/content/public/browser/web_contents_delegate.h |
+++ b/content/public/browser/web_contents_delegate.h |
@@ -36,7 +36,6 @@ class JavaScriptDialogManager; |
class RenderViewHost; |
class WebContents; |
class WebContentsImpl; |
-class WebIntentsDispatcher; |
struct ContextMenuParams; |
struct FileChooserParams; |
struct NativeWebKeyboardEvent; |
@@ -49,11 +48,6 @@ class Rect; |
class Size; |
} |
-namespace webkit_glue { |
-struct WebIntentData; |
-struct WebIntentServiceData; |
-} |
- |
namespace WebKit { |
class WebLayer; |
} |
@@ -360,20 +354,6 @@ class CONTENT_EXPORT WebContentsDelegate { |
const string16& title, |
bool user_gesture) {} |
- // Register a new Web Intents service. |
- // |user_gesture| is true if the registration is made in the context of a user |
- // gesture. |web_contents| is the context in which the registration was |
- // performed, and |data| is the service record being registered. |
- virtual void RegisterIntentHandler( |
- WebContents* web_contents, |
- const webkit_glue::WebIntentServiceData& data, |
- bool user_gesture) {} |
- |
- // Web Intents notification handler. See WebIntentsDispatcher for |
- // documentation of callee responsibility for the dispatcher. |
- virtual void WebIntentDispatch(WebContents* web_contents, |
- WebIntentsDispatcher* intents_dispatcher); |
- |
// Result of string search in the page. This includes the number of matches |
// found and the selection rect (in screen coordinates) for the string found. |
// If |final_update| is false, it indicates that more results follow. |