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

Side by Side Diff: tools/gn/command_path.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
« no previous file with comments | « tools/gn/command_format.cc ('k') | tools/gn/command_refs.cc » ('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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 8
7 #include "base/command_line.h" 9 #include "base/command_line.h"
8 #include "base/containers/hash_tables.h" 10 #include "base/containers/hash_tables.h"
9 #include "base/strings/stringprintf.h" 11 #include "base/strings/stringprintf.h"
10 #include "tools/gn/commands.h" 12 #include "tools/gn/commands.h"
11 #include "tools/gn/setup.h" 13 #include "tools/gn/setup.h"
12 #include "tools/gn/standard_out.h" 14 #include "tools/gn/standard_out.h"
13 15
14 namespace commands { 16 namespace commands {
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 OutputString(base::StringPrintf(" %d of them are public.\n", 311 OutputString(base::StringPrintf(" %d of them are public.\n",
310 static_cast<int>(state.found_public.size()))); 312 static_cast<int>(state.found_public.size())));
311 } 313 }
312 OutputString("Use --all to print all paths.\n"); 314 OutputString("Use --all to print all paths.\n");
313 } 315 }
314 } 316 }
315 return 0; 317 return 0;
316 } 318 }
317 319
318 } // namespace commands 320 } // namespace commands
OLDNEW
« no previous file with comments | « tools/gn/command_format.cc ('k') | tools/gn/command_refs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698