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

Unified Diff: chrome/browser/metrics/proto/trials_seed.proto

Issue 10392007: Restoring the chrome variatioons client, with a fix for browser_test failures caused by it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: moved comment Created 8 years, 7 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
« no previous file with comments | « chrome/browser/metrics/proto/study.proto ('k') | chrome/browser/metrics/variations_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/metrics/proto/trials_seed.proto
diff --git a/chrome/browser/metrics/proto/trials_seed.proto b/chrome/browser/metrics/proto/trials_seed.proto
new file mode 100644
index 0000000000000000000000000000000000000000..9e0249a0a2ce8b0a9df4c78a99eed8c7571913a1
--- /dev/null
+++ b/chrome/browser/metrics/proto/trials_seed.proto
@@ -0,0 +1,22 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+syntax = "proto2";
+
+option optimize_for = LITE_RUNTIME;
+
+package chrome_variations;
+
+import "study.proto";
+
+// The TrialsSeed is a protobuf response from the server that contains the list
+// of studies and a serial number to uniquely identify its contents. The
+// serial number allows the client to easily determine if the list of
+// experiments has changed from the previous TrialsSeed seen by the client.
+//
+// Next tag: 3
+message TrialsSeed {
+ optional string serial_number = 1;
+ repeated Study study = 2;
+}
« no previous file with comments | « chrome/browser/metrics/proto/study.proto ('k') | chrome/browser/metrics/variations_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698