summaryrefslogtreecommitdiffstats
path: root/chromium/ppapi/shared_impl/var_tracker.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ppapi/shared_impl/var_tracker.h')
-rw-r--r--chromium/ppapi/shared_impl/var_tracker.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/chromium/ppapi/shared_impl/var_tracker.h b/chromium/ppapi/shared_impl/var_tracker.h
index a63c74372bd..814b58cebc2 100644
--- a/chromium/ppapi/shared_impl/var_tracker.h
+++ b/chromium/ppapi/shared_impl/var_tracker.h
@@ -80,8 +80,7 @@ class PPAPI_SHARED_EXPORT VarTracker {
PP_Var MakeArrayBufferPPVar(uint32 size_in_bytes, const void* data);
// Same as above, but copy the contents of the shared memory in |h|
// into the new array buffer.
- PP_Var MakeArrayBufferPPVar(uint32 size_in_bytes,
- base::SharedMemoryHandle h);
+ PP_Var MakeArrayBufferPPVar(uint32 size_in_bytes, base::SharedMemoryHandle h);
// Create an ArrayBuffer and copy the contents of |data| in to it. The
// returned object has 0 reference count in the tracker, and like all
@@ -143,11 +142,10 @@ class PPAPI_SHARED_EXPORT VarTracker {
// Resolves an "id" generated by TrackSharedMemoryHandle back into
// a SharedMemory handle and its size on the host.
// Not implemented on the plugin side.
- virtual bool StopTrackingSharedMemoryHandle(
- int id,
- PP_Instance instance,
- base::SharedMemoryHandle *handle,
- uint32* size_in_bytes) = 0;
+ virtual bool StopTrackingSharedMemoryHandle(int id,
+ PP_Instance instance,
+ base::SharedMemoryHandle* handle,
+ uint32* size_in_bytes) = 0;
protected:
struct PPAPI_SHARED_EXPORT VarInfo {