| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CHROME_BROWSER_AUTOFILL_AUTOFILL_EXTERNAL_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_AUTOFILL_AUTOFILL_EXTERNAL_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_AUTOFILL_AUTOFILL_EXTERNAL_DELEGATE_H_ | 6 #define CHROME_BROWSER_AUTOFILL_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/string16.h" | 11 #include "base/string16.h" |
| 12 #include "chrome/browser/autofill/password_autofill_manager.h" | 12 #include "chrome/browser/autofill/password_autofill_manager.h" |
| 13 #include "chrome/browser/ui/tab_contents/tab_contents.h" | |
| 14 #include "chrome/common/form_data.h" | 13 #include "chrome/common/form_data.h" |
| 15 #include "chrome/common/form_field_data.h" | 14 #include "chrome/common/form_field_data.h" |
| 16 #include "chrome/common/password_form_fill_data.h" | 15 #include "chrome/common/password_form_fill_data.h" |
| 17 #include "content/public/browser/web_contents_user_data.h" | 16 #include "content/public/browser/web_contents_user_data.h" |
| 18 | 17 |
| 19 class AutofillManager; | 18 class AutofillManager; |
| 20 | 19 |
| 21 namespace gfx { | 20 namespace gfx { |
| 22 class Rect; | 21 class Rect; |
| 23 } | 22 } |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 // The current data list values. | 197 // The current data list values. |
| 199 std::vector<string16> data_list_values_; | 198 std::vector<string16> data_list_values_; |
| 200 std::vector<string16> data_list_labels_; | 199 std::vector<string16> data_list_labels_; |
| 201 std::vector<string16> data_list_icons_; | 200 std::vector<string16> data_list_icons_; |
| 202 std::vector<int> data_list_unique_ids_; | 201 std::vector<int> data_list_unique_ids_; |
| 203 | 202 |
| 204 DISALLOW_COPY_AND_ASSIGN(AutofillExternalDelegate); | 203 DISALLOW_COPY_AND_ASSIGN(AutofillExternalDelegate); |
| 205 }; | 204 }; |
| 206 | 205 |
| 207 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_EXTERNAL_DELEGATE_H_ | 206 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_EXTERNAL_DELEGATE_H_ |
| OLD | NEW |