summaryrefslogtreecommitdiffstats
path: root/chromium/components/autofill/core/browser/autofill_manager_test_delegate.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/autofill/core/browser/autofill_manager_test_delegate.h')
-rw-r--r--chromium/components/autofill/core/browser/autofill_manager_test_delegate.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/chromium/components/autofill/core/browser/autofill_manager_test_delegate.h b/chromium/components/autofill/core/browser/autofill_manager_test_delegate.h
deleted file mode 100644
index 222a8df2925..00000000000
--- a/chromium/components/autofill/core/browser/autofill_manager_test_delegate.h
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_TEST_DELEGATE_H_
-#define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_TEST_DELEGATE_H_
-
-namespace autofill {
-
-class AutofillManagerTestDelegate {
- public:
- virtual ~AutofillManagerTestDelegate() {}
-
- // Called when a form is previewed with Autofill suggestions.
- virtual void DidPreviewFormData() = 0;
-
- // Called when a form is filled with Autofill suggestions.
- virtual void DidFillFormData() = 0;
-
- // Called when a popup with Autofill suggestions is shown.
- virtual void DidShowSuggestions() = 0;
-};
-
-} // namespace autofill
-
-#endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_TEST_DELEGATE_H_