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

Unified Diff: import/cross/raw_data.h

Issue 149784: Add RawData request in preparation for manual loading of... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: Created 11 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: import/cross/raw_data.h
===================================================================
--- import/cross/raw_data.h (revision 20922)
+++ import/cross/raw_data.h (working copy)
@@ -46,6 +46,8 @@
#include "core/cross/param.h"
#include "core/cross/types.h"
+class FilePath;
+
namespace o3d {
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -58,6 +60,10 @@
const void *data,
size_t length);
+ static RawData::Ref CreateFromFile(ServiceLocator* service_locator,
+ const String &uri,
+ const String& filename);
+
virtual ~RawData();
const uint8 *GetData() const;
@@ -103,6 +109,8 @@
const void *data,
size_t length);
+ bool SetFromFile(const String& filename);
+
friend class IClassManager;
friend class Pack;

Powered by Google App Engine
This is Rietveld 408576698