OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_EXTERNAL_DELEGATE_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_EXTERNAL_DELEGATE_H_ |
6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_EXTERNAL_DELEGATE_H_ | 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_EXTERNAL_DELEGATE_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "base/gtest_prod_util.h" | 11 #include "base/gtest_prod_util.h" |
12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
13 #include "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
14 #include "components/autofill/core/browser/autofill_popup_delegate.h" | 14 #include "components/autofill/core/browser/autofill_popup_delegate.h" |
15 #include "components/autofill/core/browser/card_unmask_delegate.h" | 15 #include "components/autofill/core/browser/card_unmask_delegate.h" |
16 #include "components/autofill/core/browser/suggestion.h" | 16 #include "components/autofill/core/browser/suggestion.h" |
17 #include "components/autofill/core/common/form_data.h" | 17 #include "components/autofill/core/common/form_data.h" |
18 #include "components/autofill/core/common/form_field_data.h" | 18 #include "components/autofill/core/common/form_field_data.h" |
19 #include "ui/gfx/rect.h" | 19 #include "ui/gfx/geometry/rect.h" |
20 | 20 |
21 namespace autofill { | 21 namespace autofill { |
22 | 22 |
23 class AutofillDriver; | 23 class AutofillDriver; |
24 class AutofillManager; | 24 class AutofillManager; |
25 | 25 |
26 // TODO(csharp): A lot of the logic in this class is copied from autofillagent. | 26 // TODO(csharp): A lot of the logic in this class is copied from autofillagent. |
27 // Once Autofill is moved out of WebKit this class should be the only home for | 27 // Once Autofill is moved out of WebKit this class should be the only home for |
28 // this logic. See http://crbug.com/51644 | 28 // this logic. See http://crbug.com/51644 |
29 | 29 |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 std::vector<base::string16> data_list_labels_; | 162 std::vector<base::string16> data_list_labels_; |
163 | 163 |
164 base::WeakPtrFactory<AutofillExternalDelegate> weak_ptr_factory_; | 164 base::WeakPtrFactory<AutofillExternalDelegate> weak_ptr_factory_; |
165 | 165 |
166 DISALLOW_COPY_AND_ASSIGN(AutofillExternalDelegate); | 166 DISALLOW_COPY_AND_ASSIGN(AutofillExternalDelegate); |
167 }; | 167 }; |
168 | 168 |
169 } // namespace autofill | 169 } // namespace autofill |
170 | 170 |
171 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_EXTERNAL_DELEGATE_H_ | 171 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_EXTERNAL_DELEGATE_H_ |
OLD | NEW |