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

Side by Side Diff: components/nacl/renderer/plugin/nacl_subprocess.cc

Issue 1548113002: Switch to standard integer types in components/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn Created 4 years, 12 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/renderer/plugin/nacl_subprocess.h" 5 #include "components/nacl/renderer/plugin/nacl_subprocess.h"
6 6
7 #include <stdarg.h> 7 #include <stdarg.h>
8 #include <stddef.h>
9 #include <stdint.h>
8 10
9 #include <sstream> 11 #include <sstream>
10 12
11 #include "components/nacl/renderer/plugin/plugin_error.h" 13 #include "components/nacl/renderer/plugin/plugin_error.h"
12 #include "components/nacl/renderer/plugin/srpc_params.h" 14 #include "components/nacl/renderer/plugin/srpc_params.h"
13 #include "native_client/src/shared/srpc/nacl_srpc.h" 15 #include "native_client/src/shared/srpc/nacl_srpc.h"
14 16
15 namespace plugin { 17 namespace plugin {
16 18
17 NaClSubprocess::NaClSubprocess(const std::string& description, 19 NaClSubprocess::NaClSubprocess(const std::string& description,
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 } 139 }
138 params->ins()[i]->arrays.str = input; 140 params->ins()[i]->arrays.str = input;
139 break; 141 break;
140 } 142 }
141 } 143 }
142 } 144 }
143 return srpc_client_->Invoke(method_name, params); 145 return srpc_client_->Invoke(method_name, params);
144 } 146 }
145 147
146 } // namespace plugin 148 } // namespace plugin
OLDNEW
« no previous file with comments | « components/nacl/renderer/plugin/nacl_subprocess.h ('k') | components/nacl/renderer/plugin/plugin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698