summaryrefslogtreecommitdiff
path: root/chromium/components/autofill/core/browser/autofill_driver.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/autofill/core/browser/autofill_driver.h')
-rw-r--r--chromium/components/autofill/core/browser/autofill_driver.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/chromium/components/autofill/core/browser/autofill_driver.h b/chromium/components/autofill/core/browser/autofill_driver.h
index e8b95d87a02..cc1a5fd38c1 100644
--- a/chromium/components/autofill/core/browser/autofill_driver.h
+++ b/chromium/components/autofill/core/browser/autofill_driver.h
@@ -40,9 +40,8 @@ class AutofillDriver {
virtual ~AutofillDriver() {}
- // Returns whether the user is currently operating in an off-the-record
- // (i.e., incognito) context.
- virtual bool IsOffTheRecord() const = 0;
+ // Returns whether the user is currently operating in an incognito context.
+ virtual bool IsIncognito() const = 0;
// Returns the URL request context information associated with this driver.
virtual net::URLRequestContextGetter* GetURLRequestContext() = 0;
@@ -103,10 +102,6 @@ class AutofillDriver {
// Called when the user interacted with a credit card form, so that
// the current page's security state can be updated appropriately.
virtual void DidInteractWithCreditCardForm() = 0;
-
- // Tells the associated frame that a user gesture was observed somewhere in
- // the tab (including in a different frame).
- virtual void NotifyFirstUserGestureObservedInTab() {}
};
} // namespace autofill