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

Side by Side Diff: ppapi/proxy/ppapi_message_utils.h

Issue 1548813002: Switch to standard integer types in ppapi/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes 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
« no previous file with comments | « ppapi/proxy/ppapi_command_buffer_proxy.cc ('k') | ppapi/proxy/ppapi_messages.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 (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 #ifndef PPAPI_PROXY_PPAPI_MESSAGE_UTILS_H_ 5 #ifndef PPAPI_PROXY_PPAPI_MESSAGE_UTILS_H_
6 #define PPAPI_PROXY_PPAPI_MESSAGE_UTILS_H_ 6 #define PPAPI_PROXY_PPAPI_MESSAGE_UTILS_H_
7 7
8 #include "base/basictypes.h"
9 #include "base/pickle.h" 8 #include "base/pickle.h"
10 #include "base/tuple.h" 9 #include "base/tuple.h"
11 #include "ipc/ipc_message.h" 10 #include "ipc/ipc_message.h"
12 #include "ipc/ipc_message_utils.h" 11 #include "ipc/ipc_message_utils.h"
13 12
14 namespace ppapi { 13 namespace ppapi {
15 14
16 namespace internal { 15 namespace internal {
17 16
18 // TupleTypeMatch* check whether a tuple type contains elements of the specified 17 // TupleTypeMatch* check whether a tuple type contains elements of the specified
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 return IPC::ReadParam(&msg, &iter, a) && 120 return IPC::ReadParam(&msg, &iter, a) &&
122 IPC::ReadParam(&msg, &iter, b) && 121 IPC::ReadParam(&msg, &iter, b) &&
123 IPC::ReadParam(&msg, &iter, c) && 122 IPC::ReadParam(&msg, &iter, c) &&
124 IPC::ReadParam(&msg, &iter, d) && 123 IPC::ReadParam(&msg, &iter, d) &&
125 IPC::ReadParam(&msg, &iter, e); 124 IPC::ReadParam(&msg, &iter, e);
126 } 125 }
127 126
128 } // namespace ppapi 127 } // namespace ppapi
129 128
130 #endif // PPAPI_PROXY_PPAPI_MESSAGE_UTILS_H_ 129 #endif // PPAPI_PROXY_PPAPI_MESSAGE_UTILS_H_
OLDNEW
« no previous file with comments | « ppapi/proxy/ppapi_command_buffer_proxy.cc ('k') | ppapi/proxy/ppapi_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698