// Copyright 2026 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// If you change or add any fields in this file, update proto_visitors.h and
// potentially proto_enum_conversions.{h, cc}.

syntax = "proto2";

option java_multiple_files = true;
option java_package = "org.chromium.components.sync.protocol";

option optimize_for = LITE_RUNTIME;

package sync_pb;

message GeminiThreadSpecifics {
  // A server-generated unique identifier for the conversation.
  optional string conversation_id = 1;

  // The title of the chat.
  optional string title = 2;

  // Tracks the time the most recent turn in the thread was created.
  optional int64 last_turn_time_unix_epoch_millis = 3;
}
