| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/file_path.h" | 7 #include "base/file_path.h" |
| 8 #include "base/string_util.h" | 8 #include "base/string_util.h" |
| 9 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
| 10 #include "chrome/browser/autofill/autofill_manager.h" | 10 #include "chrome/browser/autofill/autofill_manager.h" |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 | 220 |
| 221 IN_PROC_BROWSER_TEST_F(FormStructureBrowserTest, | 221 IN_PROC_BROWSER_TEST_F(FormStructureBrowserTest, |
| 222 MAYBE_DataDrivenHeuristics(16)) { | 222 MAYBE_DataDrivenHeuristics(16)) { |
| 223 const FilePath::CharType kFileNamePattern[] = FILE_PATH_LITERAL("16_*.html"); | 223 const FilePath::CharType kFileNamePattern[] = FILE_PATH_LITERAL("16_*.html"); |
| 224 RunDataDrivenTest(GetInputDirectory(kTestName), | 224 RunDataDrivenTest(GetInputDirectory(kTestName), |
| 225 GetOutputDirectory(kTestName), | 225 GetOutputDirectory(kTestName), |
| 226 kFileNamePattern); | 226 kFileNamePattern); |
| 227 } | 227 } |
| 228 | 228 |
| 229 IN_PROC_BROWSER_TEST_F(FormStructureBrowserTest, | 229 IN_PROC_BROWSER_TEST_F(FormStructureBrowserTest, |
| 230 MAYBE_DataDrivenHeuristics(17)) { |
| 231 const FilePath::CharType kFileNamePattern[] = FILE_PATH_LITERAL("17_*.html"); |
| 232 RunDataDrivenTest(GetInputDirectory(kTestName), |
| 233 GetOutputDirectory(kTestName), |
| 234 kFileNamePattern); |
| 235 } |
| 236 |
| 237 IN_PROC_BROWSER_TEST_F(FormStructureBrowserTest, |
| 230 MAYBE_DataDrivenHeuristics(20)) { | 238 MAYBE_DataDrivenHeuristics(20)) { |
| 231 const FilePath::CharType kFileNamePattern[] = FILE_PATH_LITERAL("20_*.html"); | 239 const FilePath::CharType kFileNamePattern[] = FILE_PATH_LITERAL("20_*.html"); |
| 232 RunDataDrivenTest(GetInputDirectory(kTestName), | 240 RunDataDrivenTest(GetInputDirectory(kTestName), |
| 233 GetOutputDirectory(kTestName), | 241 GetOutputDirectory(kTestName), |
| 234 kFileNamePattern); | 242 kFileNamePattern); |
| 235 } | 243 } |
| OLD | NEW |