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

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

Issue 223163003: Remove the remaining automation-based tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « chrome/test/perf/frame_rate/frame_rate_tests.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 };
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_
OLDNEW
« no previous file with comments | « chrome/test/perf/frame_rate/frame_rate_tests.cc ('k') | chrome/test/perf/generate_profile.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698