| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_TEST_PERF_GENERATE_PROFILE_H_ | |
| 6 #define CHROME_TEST_PERF_GENERATE_PROFILE_H_ | |
| 7 | |
| 8 #include "base/compiler_specific.h" | |
| 9 | |
| 10 namespace base { | |
| 11 class FilePath; | |
| 12 } | |
| 13 | |
| 14 // Addition types data can be generated for. By default only urls/visits are | |
| 15 // added. | |
| 16 enum GenerateProfileTypes { | |
| 17 TOP_SITES = 1 << 0 | |
| 18 }; | |
| 19 | |
| 20 // Generates a user profile and history by psuedo-randomly generating data and | |
| 21 // feeding it to the history service. (srand is initialized with whatever | |
| 22 // urlcount is before profile is generated for deterministic output; it is | |
| 23 // reset to time() afterwards.) Returns true if successful. | |
| 24 bool GenerateProfile(GenerateProfileTypes types, | |
| 25 int urlcount, | |
| 26 const base::FilePath& dst_dir) WARN_UNUSED_RESULT; | |
| 27 | |
| 28 #endif // CHROME_TEST_PERF_GENERATE_PROFILE_H_ | |
| OLD | NEW |