security_event_specifics.proto 851 B

123456789101112131415161718192021222324252627
  1. // Copyright 2019 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. //
  5. // Sync protocol datatype extension for security events.
  6. // If you change or add any fields in this file, update proto_visitors.h and
  7. // potentially proto_enum_conversions.{h, cc}.
  8. syntax = "proto2";
  9. option java_multiple_files = true;
  10. option java_package = "org.chromium.components.sync.protocol";
  11. option optimize_for = LITE_RUNTIME;
  12. package sync_pb;
  13. import "components/sync/protocol/gaia_password_reuse.proto";
  14. message SecurityEventSpecifics {
  15. // The specific security event to record.
  16. oneof event { GaiaPasswordReuse gaia_password_reuse_event = 1; }
  17. // Time of event, as measured by client in microseconds since Windows epoch.
  18. optional int64 event_time_usec = 2;
  19. }