Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(726)

Side by Side Diff: chrome/test/perf/generate_profile.h

Issue 14585015: Recommit the generate profile patch (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Load the browser dll manually on Windows. Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/test/perf/feature_startup_test.cc ('k') | chrome/test/perf/generate_profile.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 FULL_TEXT = 1 << 1
19 };
20
21 // Generates a user profile and history by psuedo-randomly generating data and
22 // feeding it to the history service. (srand is initialized with whatever
23 // urlcount is before profile is generated for deterministic output; it is
24 // reset to time() afterwards.) Returns true if successful.
25 bool GenerateProfile(GenerateProfileTypes types,
26 int urlcount,
27 const base::FilePath& dst_dir) WARN_UNUSED_RESULT;
28
29 #endif // CHROME_TEST_PERF_GENERATE_PROFILE_H_
OLDNEW
« no previous file with comments | « chrome/test/perf/feature_startup_test.cc ('k') | chrome/test/perf/generate_profile.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698