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

Unified Diff: components/nacl/common/nacl_types.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
Index: components/nacl/common/nacl_types.cc
diff --git a/components/nacl/common/nacl_types.cc b/components/nacl/common/nacl_types.cc
index 4f6d36f12f2255920c5f1785d40653618e9efbda..76bbfa658931c82d78a11ea6ca5c49e7e057fa08 100644
--- a/components/nacl/common/nacl_types.cc
+++ b/components/nacl/common/nacl_types.cc
@@ -16,8 +16,7 @@ NaClStartParams::NaClStartParams()
#endif
validation_cache_enabled(false),
enable_debug_stub(false),
- process_type(kUnknownNaClProcessType),
- crash_info_shmem_handle(base::SharedMemory::NULLHandle()) {
+ process_type(kUnknownNaClProcessType) {
}
NaClStartParams::NaClStartParams(const NaClStartParams& other) = default;
@@ -91,9 +90,7 @@ NaClLaunchResult::NaClLaunchResult()
: ppapi_ipc_channel_handle(),
trusted_ipc_channel_handle(),
plugin_pid(base::kNullProcessId),
- plugin_child_id(0),
- crash_info_shmem_handle(base::SharedMemory::NULLHandle()) {
-}
+ plugin_child_id(0) {}
NaClLaunchResult::NaClLaunchResult(
const IPC::ChannelHandle& ppapi_ipc_channel_handle,

Powered by Google App Engine
This is Rietveld 408576698