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

Side by Side Diff: tools/variations/unittest_data/expected_output.h

Issue 1209743002: Generate a static struct from fieldtrial_testing_config (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@codegen_nested_structs
Patch Set: add +x file permission Created 5 years, 5 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
OLDNEW
(Empty)
1 // Copyright 2015 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 // GENERATED FROM THE SCHEMA DEFINITION AND DESCRIPTION IN
6 // fieldtrial_testing_config_schema.json
7 // test_config.json
8 // DO NOT EDIT.
9
10 #ifndef TEST_OUPUT_H_
11 #define TEST_OUPUT_H_
12
13 #include <cstddef>
14
15
16 struct FieldTrialGroupParams {
17 const char* const key;
18 const char* const value;
19 };
20
21 struct FieldTrialTestingGroup {
22 const char* const study;
23 const char* const group_name;
24 const FieldTrialGroupParams * params;
25 const size_t params_size;
26 };
27
28 struct FieldTrialTestingConfig {
29 const FieldTrialTestingGroup * groups;
30 const size_t groups_size;
31 };
32
33
34 extern const FieldTrialTestingConfig kFieldTrialConfig;
35
36 #endif // TEST_OUPUT_H_
OLDNEW
« no previous file with comments | « tools/variations/fieldtrial_util_unittest.py ('k') | tools/variations/unittest_data/expected_output.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698