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

Side by Side Diff: samples/o3djs/util.js

Issue 179015: Bump version to 0.1.42... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: Created 11 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « installer/win/o3d_version.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2009, Google Inc. 2 * Copyright 2009, Google Inc.
3 * All rights reserved. 3 * All rights reserved.
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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 * for its version. 53 * for its version.
54 * @type {string} 54 * @type {string}
55 */ 55 */
56 o3djs.util.PLUGIN_NAME = 'O3D Plugin'; 56 o3djs.util.PLUGIN_NAME = 'O3D Plugin';
57 57
58 /** 58 /**
59 * The version of the plugin needed to use this version of the javascript 59 * The version of the plugin needed to use this version of the javascript
60 * utility libraries. 60 * utility libraries.
61 * @type {string} 61 * @type {string}
62 */ 62 */
63 o3djs.util.REQUIRED_VERSION = '0.1.40.0'; 63 o3djs.util.REQUIRED_VERSION = '0.1.42.0';
64 64
65 /** 65 /**
66 * The width an O3D must be to put a failure message inside 66 * The width an O3D must be to put a failure message inside
67 * @type {number} 67 * @type {number}
68 */ 68 */
69 o3djs.util.MINIMUM_WIDTH_FOR_MESSAGE = 200; 69 o3djs.util.MINIMUM_WIDTH_FOR_MESSAGE = 200;
70 70
71 /** 71 /**
72 * The height an O3D must be to put a failure message inside 72 * The height an O3D must be to put a failure message inside
73 * @type {number} 73 * @type {number}
(...skipping 937 matching lines...) Expand 10 before | Expand all | Expand 10 after
1011 break; 1011 break;
1012 default: 1012 default:
1013 throw 'Unknown engine ' + o3djs.util.mainEngine_; 1013 throw 'Unknown engine ' + o3djs.util.mainEngine_;
1014 } 1014 }
1015 } 1015 }
1016 }, 10); 1016 }, 10);
1017 } 1017 }
1018 } 1018 }
1019 }; 1019 };
1020 1020
OLDNEW
« no previous file with comments | « installer/win/o3d_version.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698