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" |
(...skipping 27 matching lines...) Expand all Loading... |
38 #include "components/autofill/common/autofill_messages.h" | 38 #include "components/autofill/common/autofill_messages.h" |
39 #include "components/autofill/common/form_data.h" | 39 #include "components/autofill/common/form_data.h" |
40 #include "components/autofill/common/form_field_data.h" | 40 #include "components/autofill/common/form_field_data.h" |
41 #include "components/autofill/common/forms_seen_state.h" | 41 #include "components/autofill/common/forms_seen_state.h" |
42 #include "components/user_prefs/user_prefs.h" | 42 #include "components/user_prefs/user_prefs.h" |
43 #include "content/public/browser/web_contents.h" | 43 #include "content/public/browser/web_contents.h" |
44 #include "content/public/test/mock_render_process_host.h" | 44 #include "content/public/test/mock_render_process_host.h" |
45 #include "content/public/test/test_browser_thread.h" | 45 #include "content/public/test/test_browser_thread.h" |
46 #include "content/public/test/test_utils.h" | 46 #include "content/public/test/test_utils.h" |
47 #include "googleurl/src/gurl.h" | 47 #include "googleurl/src/gurl.h" |
48 #include "grit/generated_resources.h" | 48 #include "grit/component_resources.h" |
49 #include "ipc/ipc_test_sink.h" | 49 #include "ipc/ipc_test_sink.h" |
50 #include "testing/gmock/include/gmock/gmock.h" | 50 #include "testing/gmock/include/gmock/gmock.h" |
51 #include "testing/gtest/include/gtest/gtest.h" | 51 #include "testing/gtest/include/gtest/gtest.h" |
52 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAutofillClient.h" | 52 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAutofillClient.h" |
53 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormElement.h" | 53 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormElement.h" |
54 #include "ui/base/l10n/l10n_util.h" | 54 #include "ui/base/l10n/l10n_util.h" |
55 #include "ui/gfx/rect.h" | 55 #include "ui/gfx/rect.h" |
56 | 56 |
57 using content::BrowserThread; | 57 using content::BrowserThread; |
58 using content::WebContents; | 58 using content::WebContents; |
(...skipping 3151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3210 CreateTestAddressFormData(&form); | 3210 CreateTestAddressFormData(&form); |
3211 std::vector<FormData> forms(1, form); | 3211 std::vector<FormData> forms(1, form); |
3212 FormsSeen(forms); | 3212 FormsSeen(forms); |
3213 const FormFieldData& field = form.fields[0]; | 3213 const FormFieldData& field = form.fields[0]; |
3214 GetAutofillSuggestions(form, field); // should call the delegate's OnQuery() | 3214 GetAutofillSuggestions(form, field); // should call the delegate's OnQuery() |
3215 | 3215 |
3216 autofill_manager_->SetExternalDelegate(NULL); | 3216 autofill_manager_->SetExternalDelegate(NULL); |
3217 } | 3217 } |
3218 | 3218 |
3219 } // namespace autofill | 3219 } // namespace autofill |
OLD | NEW |