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 #include <algorithm> | 5 #include <algorithm> |
6 #include <vector> | 6 #include <vector> |
7 | 7 |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "base/memory/scoped_vector.h" | 11 #include "base/memory/scoped_vector.h" |
12 #include "base/prefs/pref_service.h" | 12 #include "base/prefs/pref_service.h" |
13 #include "base/string16.h" | 13 #include "base/string16.h" |
14 #include "base/stringprintf.h" | 14 #include "base/stringprintf.h" |
15 #include "base/strings/string_number_conversions.h" | 15 #include "base/strings/string_number_conversions.h" |
| 16 #include "base/strings/utf_string_conversions.h" |
16 #include "base/time.h" | 17 #include "base/time.h" |
17 #include "base/tuple.h" | 18 #include "base/tuple.h" |
18 #include "base/utf_string_conversions.h" | |
19 #include "chrome/browser/autofill/personal_data_manager_factory.h" | 19 #include "chrome/browser/autofill/personal_data_manager_factory.h" |
20 #include "chrome/browser/password_manager/password_manager.h" | 20 #include "chrome/browser/password_manager/password_manager.h" |
21 #include "chrome/browser/password_manager/password_manager_delegate_impl.h" | 21 #include "chrome/browser/password_manager/password_manager_delegate_impl.h" |
22 #include "chrome/browser/profiles/profile.h" | 22 #include "chrome/browser/profiles/profile.h" |
23 #include "chrome/browser/sync/profile_sync_service.h" | 23 #include "chrome/browser/sync/profile_sync_service.h" |
24 #include "chrome/browser/sync/profile_sync_service_factory.h" | 24 #include "chrome/browser/sync/profile_sync_service_factory.h" |
25 #include "chrome/browser/ui/autofill/tab_autofill_manager_delegate.h" | 25 #include "chrome/browser/ui/autofill/tab_autofill_manager_delegate.h" |
26 #include "chrome/browser/ui/browser.h" | 26 #include "chrome/browser/ui/browser.h" |
27 #include "chrome/common/pref_names.h" | 27 #include "chrome/common/pref_names.h" |
28 #include "chrome/test/base/chrome_render_view_host_test_harness.h" | 28 #include "chrome/test/base/chrome_render_view_host_test_harness.h" |
(...skipping 3251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3280 CreateTestAddressFormData(&form); | 3280 CreateTestAddressFormData(&form); |
3281 std::vector<FormData> forms(1, form); | 3281 std::vector<FormData> forms(1, form); |
3282 FormsSeen(forms); | 3282 FormsSeen(forms); |
3283 const FormFieldData& field = form.fields[0]; | 3283 const FormFieldData& field = form.fields[0]; |
3284 GetAutofillSuggestions(form, field); // should call the delegate's OnQuery() | 3284 GetAutofillSuggestions(form, field); // should call the delegate's OnQuery() |
3285 | 3285 |
3286 autofill_manager_->SetExternalDelegate(NULL); | 3286 autofill_manager_->SetExternalDelegate(NULL); |
3287 } | 3287 } |
3288 | 3288 |
3289 } // namespace autofill | 3289 } // namespace autofill |
OLD | NEW |