Index: ppapi/shared_impl/var_tracker.h |
diff --git a/ppapi/shared_impl/var_tracker.h b/ppapi/shared_impl/var_tracker.h |
index a63c74372bdcd054910ebfa29306f61da8a473db..814b58cebc28c0d5640762f51cfba6e4d8d5f083 100644 |
--- a/ppapi/shared_impl/var_tracker.h |
+++ b/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 { |