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 <vector> | 5 #include <vector> |
6 | 6 |
7 #include "base/format_macros.h" | 7 #include "base/format_macros.h" |
8 #include "base/metrics/field_trial.h" | 8 #include "base/metrics/field_trial.h" |
9 #include "base/strings/string16.h" | 9 #include "base/strings/string16.h" |
10 #include "base/strings/string_util.h" | 10 #include "base/strings/string_util.h" |
11 #include "base/strings/stringprintf.h" | 11 #include "base/strings/stringprintf.h" |
12 #include "base/strings/utf_string_conversions.h" | 12 #include "base/strings/utf_string_conversions.h" |
13 #include "chrome/common/metrics/entropy_provider.h" | |
14 #include "chrome/test/base/chrome_render_view_test.h" | 13 #include "chrome/test/base/chrome_render_view_test.h" |
15 #include "components/autofill/content/renderer/form_autofill_util.h" | 14 #include "components/autofill/content/renderer/form_autofill_util.h" |
16 #include "components/autofill/content/renderer/form_cache.h" | 15 #include "components/autofill/content/renderer/form_cache.h" |
17 #include "components/autofill/core/common/form_data.h" | 16 #include "components/autofill/core/common/form_data.h" |
18 #include "components/autofill/core/common/web_element_descriptor.h" | 17 #include "components/autofill/core/common/web_element_descriptor.h" |
| 18 #include "components/variations/entropy_provider.h" |
19 #include "testing/gtest/include/gtest/gtest.h" | 19 #include "testing/gtest/include/gtest/gtest.h" |
20 #include "third_party/WebKit/public/platform/WebString.h" | 20 #include "third_party/WebKit/public/platform/WebString.h" |
21 #include "third_party/WebKit/public/platform/WebVector.h" | 21 #include "third_party/WebKit/public/platform/WebVector.h" |
22 #include "third_party/WebKit/public/web/WebDocument.h" | 22 #include "third_party/WebKit/public/web/WebDocument.h" |
23 #include "third_party/WebKit/public/web/WebElement.h" | 23 #include "third_party/WebKit/public/web/WebElement.h" |
24 #include "third_party/WebKit/public/web/WebFormControlElement.h" | 24 #include "third_party/WebKit/public/web/WebFormControlElement.h" |
25 #include "third_party/WebKit/public/web/WebFormElement.h" | 25 #include "third_party/WebKit/public/web/WebFormElement.h" |
26 #include "third_party/WebKit/public/web/WebInputElement.h" | 26 #include "third_party/WebKit/public/web/WebInputElement.h" |
27 #include "third_party/WebKit/public/web/WebNode.h" | 27 #include "third_party/WebKit/public/web/WebNode.h" |
28 #include "third_party/WebKit/public/web/WebSelectElement.h" | 28 #include "third_party/WebKit/public/web/WebSelectElement.h" |
(...skipping 3003 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3032 EXPECT_FORM_FIELD_DATA_EQUALS(expected, fields[1]); | 3032 EXPECT_FORM_FIELD_DATA_EQUALS(expected, fields[1]); |
3033 | 3033 |
3034 expected.name = ASCIIToUTF16("country"); | 3034 expected.name = ASCIIToUTF16("country"); |
3035 expected.value = ASCIIToUTF16("AL"); | 3035 expected.value = ASCIIToUTF16("AL"); |
3036 expected.form_control_type = "select-one"; | 3036 expected.form_control_type = "select-one"; |
3037 expected.max_length = 0; | 3037 expected.max_length = 0; |
3038 EXPECT_FORM_FIELD_DATA_EQUALS(expected, fields[2]); | 3038 EXPECT_FORM_FIELD_DATA_EQUALS(expected, fields[2]); |
3039 } | 3039 } |
3040 | 3040 |
3041 } // namespace autofill | 3041 } // namespace autofill |
OLD | NEW |