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/string_util.h" | 8 #include "base/strings/string_util.h" |
9 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
10 #include "chrome/browser/ui/browser.h" | 10 #include "chrome/browser/ui/browser.h" |
11 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 11 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
12 #include "chrome/test/base/in_process_browser_test.h" | 12 #include "chrome/test/base/in_process_browser_test.h" |
13 #include "chrome/test/base/ui_test_utils.h" | 13 #include "chrome/test/base/ui_test_utils.h" |
14 #include "components/autofill/browser/autofill_manager.h" | 14 #include "components/autofill/browser/autofill_manager.h" |
15 #include "components/autofill/browser/data_driven_test.h" | 15 #include "components/autofill/browser/data_driven_test.h" |
16 #include "components/autofill/browser/form_structure.h" | 16 #include "components/autofill/browser/form_structure.h" |
17 #include "googleurl/src/gurl.h" | 17 #include "googleurl/src/gurl.h" |
18 | 18 |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 IN_PROC_BROWSER_TEST_F(FormStructureBrowserTest, | 257 IN_PROC_BROWSER_TEST_F(FormStructureBrowserTest, |
258 MAYBE_DataDrivenHeuristics(20)) { | 258 MAYBE_DataDrivenHeuristics(20)) { |
259 const base::FilePath::CharType kFileNamePattern[] = | 259 const base::FilePath::CharType kFileNamePattern[] = |
260 FILE_PATH_LITERAL("20_*.html"); | 260 FILE_PATH_LITERAL("20_*.html"); |
261 RunDataDrivenTest(GetInputDirectory(kTestName), | 261 RunDataDrivenTest(GetInputDirectory(kTestName), |
262 GetOutputDirectory(kTestName), | 262 GetOutputDirectory(kTestName), |
263 kFileNamePattern); | 263 kFileNamePattern); |
264 } | 264 } |
265 | 265 |
266 } // namespace autofill | 266 } // namespace autofill |
OLD | NEW |