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

Side by Side Diff: components/nacl/common/nacl_types.cc

Issue 1109723002: Use of base::StringPairs appropriately in nacl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Incorporated review comments. Created 5 years, 7 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 unified diff | Download patch
« no previous file with comments | « components/nacl/common/nacl_types.h ('k') | components/nacl/renderer/json_manifest.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/nacl/common/nacl_types.h" 5 #include "components/nacl/common/nacl_types.h"
6 #include "ipc/ipc_platform_file.h" 6 #include "ipc/ipc_platform_file.h"
7 7
8 namespace nacl { 8 namespace nacl {
9 9
10 NaClStartParams::NaClStartParams() 10 NaClStartParams::NaClStartParams()
(...skipping 29 matching lines...) Expand all
40 render_view_id(0), 40 render_view_id(0),
41 permission_bits(0), 41 permission_bits(0),
42 process_type(kUnknownNaClProcessType) { 42 process_type(kUnknownNaClProcessType) {
43 } 43 }
44 44
45 NaClLaunchParams::NaClLaunchParams( 45 NaClLaunchParams::NaClLaunchParams(
46 const std::string& manifest_url, 46 const std::string& manifest_url,
47 const IPC::PlatformFileForTransit& nexe_file, 47 const IPC::PlatformFileForTransit& nexe_file,
48 uint64_t nexe_token_lo, 48 uint64_t nexe_token_lo,
49 uint64_t nexe_token_hi, 49 uint64_t nexe_token_hi,
50 const std::vector< 50 const base::StringPairs& resource_files_to_prefetch,
51 std::pair<std::string, std::string> >& resource_files_to_prefetch,
52 int render_view_id, 51 int render_view_id,
53 uint32 permission_bits, 52 uint32 permission_bits,
54 bool uses_nonsfi_mode, 53 bool uses_nonsfi_mode,
55 NaClAppProcessType process_type) 54 NaClAppProcessType process_type)
56 : manifest_url(manifest_url), 55 : manifest_url(manifest_url),
57 nexe_file(nexe_file), 56 nexe_file(nexe_file),
58 nexe_token_lo(nexe_token_lo), 57 nexe_token_lo(nexe_token_lo),
59 nexe_token_hi(nexe_token_hi), 58 nexe_token_hi(nexe_token_hi),
60 resource_files_to_prefetch(resource_files_to_prefetch), 59 resource_files_to_prefetch(resource_files_to_prefetch),
61 render_view_id(render_view_id), 60 render_view_id(render_view_id),
(...skipping 28 matching lines...) Expand all
90 manifest_service_ipc_channel_handle(manifest_service_ipc_channel_handle), 89 manifest_service_ipc_channel_handle(manifest_service_ipc_channel_handle),
91 plugin_pid(plugin_pid), 90 plugin_pid(plugin_pid),
92 plugin_child_id(plugin_child_id), 91 plugin_child_id(plugin_child_id),
93 crash_info_shmem_handle(crash_info_shmem_handle) { 92 crash_info_shmem_handle(crash_info_shmem_handle) {
94 } 93 }
95 94
96 NaClLaunchResult::~NaClLaunchResult() { 95 NaClLaunchResult::~NaClLaunchResult() {
97 } 96 }
98 97
99 } // namespace nacl 98 } // namespace nacl
OLDNEW
« no previous file with comments | « components/nacl/common/nacl_types.h ('k') | components/nacl/renderer/json_manifest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698