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

Side by Side Diff: tools/ipc_fuzzer/message_tools/message_list.cc

Issue 1549203002: Switch to standard integer types in tools/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 <stddef.h>
6
5 #include <algorithm> 7 #include <algorithm>
6 #include <iostream> 8 #include <iostream>
7 #include <string> 9 #include <string>
8 #include <vector> 10 #include <vector>
9 11
10 #include "base/basictypes.h" 12 #include "build/build_config.h"
11 13
12 // Include once to get the type definitions 14 // Include once to get the type definitions
13 #include "tools/ipc_fuzzer/message_lib/all_messages.h" 15 #include "tools/ipc_fuzzer/message_lib/all_messages.h"
14 16
15 struct msginfo { 17 struct msginfo {
16 const char* name; 18 const char* name;
17 const char* file; 19 const char* file;
18 int id; 20 int id;
19 int in_count; 21 int in_count;
20 int out_count; 22 int out_count;
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 186
185 std::sort(msgtable, msgtable + MSGTABLE_SIZE); 187 std::sort(msgtable, msgtable + MSGTABLE_SIZE);
186 188
187 if (!skip_check && check_msgtable() == false) 189 if (!skip_check && check_msgtable() == false)
188 return 1; 190 return 1;
189 191
190 dump_msgtable(show_args, show_ids, show_comma, filter); 192 dump_msgtable(show_args, show_ids, show_comma, filter);
191 return 0; 193 return 0;
192 } 194 }
193 195
OLDNEW
« no previous file with comments | « tools/ipc_fuzzer/message_replay/replay_process.cc ('k') | tools/ipc_fuzzer/message_tools/message_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698