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

Unified Diff: ppapi/proxy/serialized_handle.cc

Issue 2849633002: Get rid of base::SharedMemory::NULLHandle(); (Closed)
Patch Set: Rebase. Created 3 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/serialized_handle.h ('k') | ppapi/proxy/video_decoder_resource.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/serialized_handle.cc
diff --git a/ppapi/proxy/serialized_handle.cc b/ppapi/proxy/serialized_handle.cc
index 000eed5be57b664ae7c169e278ce697b6345fa77..88796cda06f086fe9164df584e07b21225e65a7f 100644
--- a/ppapi/proxy/serialized_handle.cc
+++ b/ppapi/proxy/serialized_handle.cc
@@ -19,7 +19,6 @@ namespace proxy {
SerializedHandle::SerializedHandle()
: type_(INVALID),
- shm_handle_(base::SharedMemory::NULLHandle()),
size_(0),
descriptor_(IPC::InvalidPlatformFileForTransit()),
open_flags_(0),
@@ -28,7 +27,6 @@ SerializedHandle::SerializedHandle()
SerializedHandle::SerializedHandle(Type type_param)
: type_(type_param),
- shm_handle_(base::SharedMemory::NULLHandle()),
size_(0),
descriptor_(IPC::InvalidPlatformFileForTransit()),
open_flags_(0),
@@ -48,7 +46,6 @@ SerializedHandle::SerializedHandle(
Type type,
const IPC::PlatformFileForTransit& socket_descriptor)
: type_(type),
- shm_handle_(base::SharedMemory::NULLHandle()),
size_(0),
descriptor_(socket_descriptor),
open_flags_(0),
« no previous file with comments | « ppapi/proxy/serialized_handle.h ('k') | ppapi/proxy/video_decoder_resource.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698