Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Side by Side Diff: third_party/protobuf/src/google/protobuf/compiler/zip_writer.h

Issue 2495533002: third_party/protobuf: Update to HEAD (83d681ee2c) (Closed)
Patch Set: Make chrome settings proto generated file a component Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 // https://developers.google.com/protocol-buffers/ 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.
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 78
79 private: 79 private:
80 struct FileInfo { 80 struct FileInfo {
81 string name; 81 string name;
82 uint32 offset; 82 uint32 offset;
83 uint32 size; 83 uint32 size;
84 uint32 crc32; 84 uint32 crc32;
85 }; 85 };
86 86
87 io::ZeroCopyOutputStream* raw_output_; 87 io::ZeroCopyOutputStream* raw_output_;
88 vector<FileInfo> files_; 88 std::vector<FileInfo> files_;
89 }; 89 };
90 90
91 } // namespace compiler 91 } // namespace compiler
92 } // namespace protobuf 92 } // namespace protobuf
93 } // namespace google 93 } // namespace google
OLDNEW
« no previous file with comments | « third_party/protobuf/src/google/protobuf/compiler/subprocess.cc ('k') | third_party/protobuf/src/google/protobuf/descriptor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698