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/files/file_path.h" | 7 #include "base/files/file_path.h" |
8 #include "base/path_service.h" | 8 #include "base/path_service.h" |
9 #include "base/strings/string_util.h" | 9 #include "base/strings/string_util.h" |
10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 | 274 |
275 IN_PROC_BROWSER_TEST_F(FormStructureBrowserTest, | 275 IN_PROC_BROWSER_TEST_F(FormStructureBrowserTest, |
276 MAYBE_DataDrivenHeuristics(21)) { | 276 MAYBE_DataDrivenHeuristics(21)) { |
277 const base::FilePath::CharType kFileNamePattern[] = | 277 const base::FilePath::CharType kFileNamePattern[] = |
278 FILE_PATH_LITERAL("21_*.html"); | 278 FILE_PATH_LITERAL("21_*.html"); |
279 RunDataDrivenTest(GetInputDirectory(kTestName), | 279 RunDataDrivenTest(GetInputDirectory(kTestName), |
280 GetOutputDirectory(kTestName), | 280 GetOutputDirectory(kTestName), |
281 kFileNamePattern); | 281 kFileNamePattern); |
282 } | 282 } |
283 | 283 |
| 284 IN_PROC_BROWSER_TEST_F(FormStructureBrowserTest, |
| 285 MAYBE_DataDrivenHeuristics(22)) { |
| 286 const base::FilePath::CharType kFileNamePattern[] = |
| 287 FILE_PATH_LITERAL("22_*.html"); |
| 288 RunDataDrivenTest(GetInputDirectory(kTestName), |
| 289 GetOutputDirectory(kTestName), |
| 290 kFileNamePattern); |
| 291 } |
| 292 |
284 } // namespace autofill | 293 } // namespace autofill |
OLD | NEW |