Index: components/variations/proto/client_experiments.proto |
diff --git a/components/variations/proto/chrome_experiments.proto b/components/variations/proto/client_experiments.proto |
similarity index 62% |
rename from components/variations/proto/chrome_experiments.proto |
rename to components/variations/proto/client_experiments.proto |
index 28bf22d6559cf1ae0f0975ce12daeb47aca92bab..874ac579705036d224ae3916f2205e18db499112 100644 |
--- a/components/variations/proto/chrome_experiments.proto |
+++ b/components/variations/proto/client_experiments.proto |
@@ -2,7 +2,7 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
// |
-// Summary of Chrome variations from experiments. |
+// Summary of Client variations from experiments. |
syntax = "proto2"; |
@@ -10,11 +10,11 @@ option optimize_for = LITE_RUNTIME; |
package metrics; |
-message ChromeVariations { |
- // A list of Chrome experiment variation IDs that are active. |
+message ClientVariations { |
Alexei Svitkine (slow)
2014/07/14 16:38:01
I think the proto name should correspond to the fi
Mathieu
2014/07/14 19:39:55
Done.
|
+ // A list of Client experiment variation IDs that are active. |
repeated int32 variation_id = 1; |
- // A list of Chrome experiment variation IDs that trigger server side |
+ // A list of Client experiment variation IDs that trigger server side |
Alexei Svitkine (slow)
2014/07/14 16:38:01
Nit: Don't capitalize "client", here and above.
Mathieu
2014/07/14 19:39:55
Done.
|
// behavior. |
repeated int32 trigger_variation_id = 3; |
} |