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

Unified Diff: ppapi/proxy/raw_var_data.h

Issue 14208016: Hookup RawVarData to SerializedVar (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/proxy/ppb_testing_proxy.cc ('k') | ppapi/proxy/raw_var_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/raw_var_data.h
diff --git a/ppapi/proxy/raw_var_data.h b/ppapi/proxy/raw_var_data.h
index 17bdaeea7f7d5cf63c335a9c3bd4f233811ff001..1e8746f2a37e76f2af85ce72d06a37789d7ad964 100644
--- a/ppapi/proxy/raw_var_data.h
+++ b/ppapi/proxy/raw_var_data.h
@@ -72,6 +72,16 @@ class PPAPI_PROXY_EXPORT RawVarDataGraph {
static scoped_ptr<RawVarDataGraph> Read(const IPC::Message* m,
PickleIterator* iter);
+ // Returns a vector of SerializedHandles associated with this RawVarDataGraph.
+ // Ownership of the pointers remains with the elements of the RawVarDataGraph.
+ std::vector<SerializedHandle*> GetHandles();
+
+ // Sets the threshold size at which point we switch from transmitting
+ // array buffers in IPC messages to using shared memory. This is only used
+ // for testing purposes where we need to transmit small buffers using shmem
+ // (in order to have fast tests).
+ static void SetMinimumArrayBufferSizeForShmemForTest(uint32 threshold);
+
// A list of the nodes in the graph.
ScopedVector<RawVarData> data_;
};
@@ -107,6 +117,10 @@ class RawVarData {
const IPC::Message* m,
PickleIterator* iter) = 0;
+ // Returns a SerializedHandle associated with this RawVarData or NULL if none
+ // exists. Ownership of the pointer remains with the RawVarData.
+ virtual SerializedHandle* GetHandle();
+
bool initialized() { return initialized_; }
protected:
@@ -182,6 +196,7 @@ class ArrayBufferRawVarData : public RawVarData {
virtual bool Read(PP_VarType type,
const IPC::Message* m,
PickleIterator* iter) OVERRIDE;
+ virtual SerializedHandle* GetHandle() OVERRIDE;
private:
// The type of the storage underlying the array buffer.
« no previous file with comments | « ppapi/proxy/ppb_testing_proxy.cc ('k') | ppapi/proxy/raw_var_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698