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

Side by Side Diff: samples/o3d-webgl/raw_data.js

Issue 1745002: Incremental progress toward archive loading in o3d-webgl. Implemented... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/o3d/
Patch Set: Created 10 years, 8 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 | « samples/o3d-webgl/param_object.js ('k') | samples/o3d-webgl/texture.js » ('j') | 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 2010, Google Inc. 2 * Copyright 2010, 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 o3d.NamedObject.call(this); 48 o3d.NamedObject.call(this);
49 }; 49 };
50 o3d.inherit('RawData', 'NamedObject'); 50 o3d.inherit('RawData', 'NamedObject');
51 51
52 52
53 /** 53 /**
54 * Returns the raw data as a string. The data must be a valid utf-8 string 54 * Returns the raw data as a string. The data must be a valid utf-8 string
55 * and the uri must end in .json, .txt, .xml, .ini or .csv 55 * and the uri must end in .json, .txt, .xml, .ini or .csv
56 * @type {string} 56 * @type {string}
57 */ 57 */
58 o3d.RawData.prototype.string_value = ''; 58 o3d.RawData.prototype.stringValue = '';
59 59
60 60
61 /** 61 /**
62 * The data as an image if it is an image. 62 * The data as an image if it is an image.
63 * @type {Image} 63 * @type {Image}
64 * @private 64 * @private
65 */ 65 */
66 o3d.RawData.prototype.image_ = null; 66 o3d.RawData.prototype.image_ = null;
67 67
68 68
(...skipping 25 matching lines...) Expand all
94 /** 94 /**
95 * Flushes the memory resources associated with this data object, 95 * Flushes the memory resources associated with this data object,
96 * but keeps a cache in case the data object is used later. 96 * but keeps a cache in case the data object is used later.
97 */ 97 */
98 o3d.RawData.prototype.flush = function() { 98 o3d.RawData.prototype.flush = function() {
99 o3d.notImplemented(); 99 o3d.notImplemented();
100 }; 100 };
101 101
102 102
103 103
OLDNEW
« no previous file with comments | « samples/o3d-webgl/param_object.js ('k') | samples/o3d-webgl/texture.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698