Chromium Code Reviews| Index: components/variations/proto/study.proto |
| diff --git a/components/variations/proto/study.proto b/components/variations/proto/study.proto |
| index e58b8f9092aa78dc3f67347930048557cb9b6c52..e2678b987ff60139b5d716e41764966d76bd6b14 100644 |
| --- a/components/variations/proto/study.proto |
| +++ b/components/variations/proto/study.proto |
| @@ -43,7 +43,7 @@ message Study { |
| // An experiment within the study. |
| // |
| - // Next tag: 9 |
| + // Next tag: 10 |
| message Experiment { |
| // A named parameter value for this experiment. |
| // |
| @@ -107,6 +107,12 @@ message Study { |
| KILL_CRITICAL = 3; |
| } |
| optional Type type = 7 [default = NORMAL]; |
| + |
| + message OverrideUIString { |
| + optional fixed32 name_hash = 1; // e.g. Hash("IDS_BOOKMARK_BAR_FOLDER_NAME") |
|
Alexei Svitkine (slow)
2014/07/03 17:54:40
Nit: Wrapping. But also, add some comments about t
jwd
2014/07/07 15:52:20
Done.
|
| + optional string value = 2; // e.g. "Bookmark Bar" |
| + } |
| + repeated OverrideUIString override_ui_string = 9; |
| } |
| // List of experiments in this study. This list should include the default / |