Index: components/autofill/core/browser/autofill_client.h |
diff --git a/components/autofill/core/browser/autofill_client.h b/components/autofill/core/browser/autofill_client.h |
index 4e95487900267840c2139bb705e628c690382c94..23963856f38725202215b72c226c2f0719c3c42d 100644 |
--- a/components/autofill/core/browser/autofill_client.h |
+++ b/components/autofill/core/browser/autofill_client.h |
@@ -11,6 +11,7 @@ |
#include "base/i18n/rtl.h" |
#include "base/memory/weak_ptr.h" |
#include "base/strings/string16.h" |
+#include "ui/base/window_open_disposition.h" |
namespace content { |
class RenderFrameHost; |
@@ -136,6 +137,10 @@ class AutofillClient { |
// Informs the client that a user gesture has been observed. |
virtual void OnFirstUserGestureObserved() = 0; |
+ |
+ // Opens |url| with the supplied |disposition|. |
+ virtual void LinkClicked(const GURL& url, |
+ WindowOpenDisposition disposition) = 0; |
}; |
} // namespace autofill |