| OLD | NEW |
| 1 // Protocol Buffers - Google's data interchange format | 1 // Protocol Buffers - Google's data interchange format |
| 2 // Copyright 2008 Google Inc. All rights reserved. | 2 // Copyright 2008 Google Inc. All rights reserved. |
| 3 // http://code.google.com/p/protobuf/ | 3 // https://developers.google.com/protocol-buffers/ |
| 4 // | 4 // |
| 5 // Redistribution and use in source and binary forms, with or without | 5 // Redistribution and use in source and binary forms, with or without |
| 6 // modification, are permitted provided that the following conditions are | 6 // modification, are permitted provided that the following conditions are |
| 7 // met: | 7 // met: |
| 8 // | 8 // |
| 9 // * Redistributions of source code must retain the above copyright | 9 // * Redistributions of source code must retain the above copyright |
| 10 // notice, this list of conditions and the following disclaimer. | 10 // notice, this list of conditions and the following disclaimer. |
| 11 // * Redistributions in binary form must reproduce the above | 11 // * Redistributions in binary form must reproduce the above |
| 12 // copyright notice, this list of conditions and the following disclaimer | 12 // copyright notice, this list of conditions and the following disclaimer |
| 13 // in the documentation and/or other materials provided with the | 13 // in the documentation and/or other materials provided with the |
| (...skipping 13 matching lines...) Expand all Loading... |
| 27 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 27 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 29 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 30 | 30 |
| 31 // Author: kenton@google.com (Kenton Varda) | 31 // Author: kenton@google.com (Kenton Varda) |
| 32 // Based on original Protocol Buffers design by | 32 // Based on original Protocol Buffers design by |
| 33 // Sanjay Ghemawat, Jeff Dean, and others. | 33 // Sanjay Ghemawat, Jeff Dean, and others. |
| 34 // | 34 // |
| 35 // A proto file which is imported by unittest.proto to test importing. | 35 // A proto file which is imported by unittest.proto to test importing. |
| 36 | 36 |
| 37 syntax = "proto2"; |
| 37 | 38 |
| 38 // We don't put this in a package within proto2 because we need to make sure | 39 // We don't put this in a package within proto2 because we need to make sure |
| 39 // that the generated code doesn't depend on being in the proto2 namespace. | 40 // that the generated code doesn't depend on being in the proto2 namespace. |
| 40 // In test_util.h we do | 41 // In test_util.h we do |
| 41 // "using namespace unittest_import = protobuf_unittest_import". | 42 // "using namespace unittest_import = protobuf_unittest_import". |
| 42 package protobuf_unittest_import; | 43 package protobuf_unittest_import; |
| 43 | 44 |
| 44 option optimize_for = SPEED; | 45 option optimize_for = SPEED; |
| 46 option cc_enable_arenas = true; |
| 45 | 47 |
| 46 // Excercise the java_package option. | 48 // Exercise the java_package option. |
| 47 option java_package = "com.google.protobuf.test"; | 49 option java_package = "com.google.protobuf.test"; |
| 48 | 50 |
| 49 // Do not set a java_outer_classname here to verify that Proto2 works without | 51 // Do not set a java_outer_classname here to verify that Proto2 works without |
| 50 // one. | 52 // one. |
| 51 | 53 |
| 52 // Test public import | 54 // Test public import |
| 53 import public "google/protobuf/unittest_import_public.proto"; | 55 import public "google/protobuf/unittest_import_public.proto"; |
| 54 | 56 |
| 55 message ImportMessage { | 57 message ImportMessage { |
| 56 optional int32 d = 1; | 58 optional int32 d = 1; |
| 57 } | 59 } |
| 58 | 60 |
| 59 enum ImportEnum { | 61 enum ImportEnum { |
| 60 IMPORT_FOO = 7; | 62 IMPORT_FOO = 7; |
| 61 IMPORT_BAR = 8; | 63 IMPORT_BAR = 8; |
| 62 IMPORT_BAZ = 9; | 64 IMPORT_BAZ = 9; |
| 63 } | 65 } |
| 64 | 66 |
| OLD | NEW |