test.proto 529 B

1234567891011121314151617181920212223
  1. // Copyright (c) 2012 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. // Protocol messages used only for testing.
  6. syntax = "proto2";
  7. option java_multiple_files = true;
  8. option java_package = "org.chromium.components.sync.protocol";
  9. option optimize_for = LITE_RUNTIME;
  10. package sync_pb;
  11. message UnknownFieldsTestA {
  12. required bool foo = 1;
  13. }
  14. message UnknownFieldsTestB {
  15. required bool foo = 1;
  16. required bool bar = 2;
  17. }