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

Side by Side Diff: third_party/protobuf/js/commonjs/export.js

Issue 1983203003: Update third_party/protobuf to protobuf-v3.0.0-beta-3 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: owners Created 4 years, 6 months 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
(Empty)
1 /**
2 * @fileoverview Export symbols needed by generated code in CommonJS style.
3 *
4 * This effectively is our canonical list of what we publicly export from
5 * the google-protobuf.js file that we build at distribution time.
6 */
7
8 goog.require('goog.object');
9 goog.require('jspb.BinaryReader');
10 goog.require('jspb.BinaryWriter');
11 goog.require('jspb.ExtensionFieldInfo');
12 goog.require('jspb.Message');
13
14 exports.Message = jspb.Message;
15 exports.BinaryReader = jspb.BinaryReader;
16 exports.BinaryWriter = jspb.BinaryWriter;
17 exports.ExtensionFieldInfo = jspb.ExtensionFieldInfo;
18
19 // These are used by generated code but should not be used directly by clients.
20 exports.exportSymbol = goog.exportSymbol;
21 exports.inherits = goog.inherits;
22 exports.object = {extend: goog.object.extend};
OLDNEW
« no previous file with comments | « third_party/protobuf/js/binary/writer.js ('k') | third_party/protobuf/js/commonjs/export_asserts.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698