| 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 COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_EXTERNAL_DELEGATE_H_ | 5 #ifndef COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_EXTERNAL_DELEGATE_H_ |
| 6 #define COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_EXTERNAL_DELEGATE_H_ | 6 #define COMPONENTS_AUTOFILL_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/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "base/string16.h" | 12 #include "base/strings/string16.h" |
| 13 #include "components/autofill/browser/autofill_popup_delegate.h" | 13 #include "components/autofill/browser/autofill_popup_delegate.h" |
| 14 #include "components/autofill/browser/password_autofill_manager.h" | 14 #include "components/autofill/browser/password_autofill_manager.h" |
| 15 #include "components/autofill/common/form_data.h" | 15 #include "components/autofill/common/form_data.h" |
| 16 #include "components/autofill/common/form_field_data.h" | 16 #include "components/autofill/common/form_field_data.h" |
| 17 #include "components/autofill/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 |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 std::vector<int> data_list_unique_ids_; | 190 std::vector<int> data_list_unique_ids_; |
| 191 | 191 |
| 192 base::WeakPtrFactory<AutofillExternalDelegate> weak_ptr_factory_; | 192 base::WeakPtrFactory<AutofillExternalDelegate> weak_ptr_factory_; |
| 193 | 193 |
| 194 DISALLOW_COPY_AND_ASSIGN(AutofillExternalDelegate); | 194 DISALLOW_COPY_AND_ASSIGN(AutofillExternalDelegate); |
| 195 }; | 195 }; |
| 196 | 196 |
| 197 } // namespace autofill | 197 } // namespace autofill |
| 198 | 198 |
| 199 #endif // COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_EXTERNAL_DELEGATE_H_ | 199 #endif // COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_EXTERNAL_DELEGATE_H_ |
| OLD | NEW |