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

Unified Diff: sync/protocol/experiment_status.proto

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 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
« no previous file with comments | « sync/protocol/entity_metadata.proto ('k') | sync/protocol/experiments_specifics.proto » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/protocol/experiment_status.proto
diff --git a/sync/protocol/experiment_status.proto b/sync/protocol/experiment_status.proto
deleted file mode 100644
index be4902d3b0e96078ec232f3115885531d7b49bd8..0000000000000000000000000000000000000000
--- a/sync/protocol/experiment_status.proto
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright 2014 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 sync_pb;
-
-import "experiments_specifics.proto";
-
-// This request allows an unauthenticated client to check the status of the
-// experiments which do not require user authentication. The status of an
-// experiment for a specific client can be determined based on the user agent
-// string and/or the client id sent in the HTTPS POST request.
-message ExperimentStatusRequest {
- // Enumerates the experiments for which the status should be returned. An
- // experiment name must be the same as one of the field names specified in
- // ExperimentsSpecifics. See sync/protocol/experiments_specifics.proto.
- repeated string experiment_name = 1;
-}
-
-// Response to an experiment status request.
-message ExperimentStatusResponse {
- // Minimal time to wait before issuing another request.
- optional int32 poll_interval_seconds = 1 [default = 3600];
-
- // The experiments that the client has asked for, with each experiment
- // containing exactly one experiment flag. The client can inspect the
- // embedded flag to obtain the experiment status. Note that the number of
- // experiments should be less than or equal to the number of experiment_name
- // sent in the request since it is possible that there is no experiment
- // matching an experiment_name.
- repeated ExperimentsSpecifics experiment = 2;
-}
« no previous file with comments | « sync/protocol/entity_metadata.proto ('k') | sync/protocol/experiments_specifics.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698