history_status.proto 687 B

1234567891011121314151617181920212223
  1. // Copyright 2016 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file
  4. syntax = "proto2";
  5. option java_multiple_files = true;
  6. option java_package = "org.chromium.components.sync.protocol";
  7. option optimize_for = LITE_RUNTIME;
  8. package sync_pb;
  9. message HistoryStatusRequest {}
  10. // Response to a history status request.
  11. message HistoryStatusResponse {
  12. // Minimal time to wait before issuing another request.
  13. optional int32 min_poll_interval_seconds = 1 [default = 3600];
  14. // Indicates whether the history corpuses have any derived data for a user.
  15. optional bool has_derived_data = 2;
  16. }