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 #ifndef CHROME_APP_BREAKPAD_FIELD_TRIAL_WIN_H_ | 5 #ifndef CHROME_APP_BREAKPAD_FIELD_TRIAL_WIN_H_ |
6 #define CHROME_APP_BREAKPAD_FIELD_TRIAL_WIN_H_ | 6 #define CHROME_APP_BREAKPAD_FIELD_TRIAL_WIN_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/string16.h" | 10 #include "base/strings/string16.h" |
11 | 11 |
12 namespace testing { | 12 namespace testing { |
13 | 13 |
14 // Sets the breakpad experiment chunks for testing. |chunks| is the list of | 14 // Sets the breakpad experiment chunks for testing. |chunks| is the list of |
15 // values to set, where each entry may contain multiple experiment tuples, with | 15 // values to set, where each entry may contain multiple experiment tuples, with |
16 // the total number of experiments indicated by |experiments_chunks|. | 16 // the total number of experiments indicated by |experiments_chunks|. |
17 void SetExperimentChunks(const std::vector<string16>& chunks, | 17 void SetExperimentChunks(const std::vector<string16>& chunks, |
18 size_t experiments_count); | 18 size_t experiments_count); |
19 | 19 |
20 } // namespace testing | 20 } // namespace testing |
21 | 21 |
22 #endif // CHROME_APP_BREAKPAD_FIELD_TRIAL_WIN_H_ | 22 #endif // CHROME_APP_BREAKPAD_FIELD_TRIAL_WIN_H_ |
OLD | NEW |