| 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/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "base/string16.h" | 12 #include "base/string16.h" |
| 13 #include "chrome/browser/autofill/autofill_popup_delegate.h" | 13 #include "chrome/browser/autofill/autofill_popup_delegate.h" |
| 14 #include "chrome/browser/autofill/password_autofill_manager.h" | 14 #include "chrome/browser/autofill/password_autofill_manager.h" |
| 15 #include "chrome/common/form_data.h" | 15 #include "components/autofill/common/form_data.h" |
| 16 #include "chrome/common/form_field_data.h" | 16 #include "components/autofill/common/form_field_data.h" |
| 17 #include "chrome/common/password_form_fill_data.h" | 17 #include "components/autofill/common/password_form_fill_data.h" |
| 18 #include "content/public/browser/notification_observer.h" | 18 #include "content/public/browser/notification_observer.h" |
| 19 #include "content/public/browser/notification_registrar.h" | 19 #include "content/public/browser/notification_registrar.h" |
| 20 #include "content/public/browser/web_contents_user_data.h" | 20 #include "content/public/browser/web_contents_user_data.h" |
| 21 #include "ui/gfx/rect.h" | 21 #include "ui/gfx/rect.h" |
| 22 | 22 |
| 23 class AutofillManager; | 23 class AutofillManager; |
| 24 | 24 |
| 25 namespace gfx { | 25 namespace gfx { |
| 26 class Rect; | 26 class Rect; |
| 27 } | 27 } |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 // The current data list values. | 180 // The current data list values. |
| 181 std::vector<string16> data_list_values_; | 181 std::vector<string16> data_list_values_; |
| 182 std::vector<string16> data_list_labels_; | 182 std::vector<string16> data_list_labels_; |
| 183 std::vector<string16> data_list_icons_; | 183 std::vector<string16> data_list_icons_; |
| 184 std::vector<int> data_list_unique_ids_; | 184 std::vector<int> data_list_unique_ids_; |
| 185 | 185 |
| 186 DISALLOW_COPY_AND_ASSIGN(AutofillExternalDelegate); | 186 DISALLOW_COPY_AND_ASSIGN(AutofillExternalDelegate); |
| 187 }; | 187 }; |
| 188 | 188 |
| 189 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_EXTERNAL_DELEGATE_H_ | 189 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_EXTERNAL_DELEGATE_H_ |
| OLD | NEW |