| Index: components/autofill/core/browser/autofill_driver.h
|
| diff --git a/components/autofill/core/browser/autofill_driver.h b/components/autofill/core/browser/autofill_driver.h
|
| index b690191ffd411a7c4b3fd0e4708bd641657ba4f8..749ddb693d9257f07b951d6c040253d76ad5d36d 100644
|
| --- a/components/autofill/core/browser/autofill_driver.h
|
| +++ b/components/autofill/core/browser/autofill_driver.h
|
| @@ -8,6 +8,7 @@
|
| #include <vector>
|
|
|
| #include "components/autofill/core/common/form_data.h"
|
| +#include "ui/base/window_open_disposition.h"
|
|
|
| namespace base {
|
| class SequencedWorkerPool;
|
| @@ -89,6 +90,11 @@ class AutofillDriver {
|
| // Tells the renderer to preview the node with suggested text.
|
| virtual void RendererShouldPreviewFieldWithValue(
|
| const base::string16& value) = 0;
|
| +
|
| + // Opens the help |url| with |disposition| on link click perfromed on the
|
| + // infobar.
|
| + virtual void LinkClicked(const GURL& url,
|
| + WindowOpenDisposition disposition) = 0;
|
| };
|
|
|
| } // namespace autofill
|
|
|