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

Unified Diff: components/variations/proto/client_experiments.proto

Issue 387393002: [Variations] Renaming ChromeVariations to ClientVariations. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
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;
}

Powered by Google App Engine
This is Rietveld 408576698