blob: ac48b7fa2f1263bdd0ffb3298ef1b7e4f23ba6cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// 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_BROWSER_AUTOFILL_MANAGER_TEST_DELEGATE_H_
#define COMPONENTS_AUTOFILL_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_BROWSER_AUTOFILL_MANAGER_TEST_DELEGATE_H_
|