blob: 01e7c359d22a8a9fcbccdae00cd33a21edb1b909 [file] [log] [blame]
// Copyright 2017 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 content.proto;
// Stores per-registration (as opposed to per-request) data.
//
// Next tag: 5
message BackgroundFetchRegistration {
// See definition of |unique_id| in BackgroundFetchRegistrationId.
optional string unique_id = 1;
// See definition of |developer_id| in BackgroundFetchRegistrationId.
optional bytes developer_id = 2;
optional string origin = 3;
optional int64 creation_microseconds_since_unix_epoch = 4;
}