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

Side by Side Diff: tools/memory_watcher/scripts/finditem.pl

Issue 10134019: Set svn:executable bit on scripts that are executable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed pylintrc Created 8 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « tools/json_comment_eater.py ('k') | tools/memory_watcher/scripts/memprof.pl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/perl 1 #!/usr/bin/perl
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
2 5
3 sub process_raw($$) { 6 sub process_raw($$) {
4 my $file = shift; 7 my $file = shift;
5 my $search = shift; 8 my $search = shift;
6 9
7 my %leaks = (); 10 my %leaks = ();
8 11
9 my $save = 0; 12 my $save = 0;
10 my $print = 0; 13 my $print = 0;
11 my $bytes = 0; 14 my $bytes = 0;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 47
45 48
46 # ----- Main ------------------------------------------------ 49 # ----- Main ------------------------------------------------
47 50
48 # Get the command line argument 51 # Get the command line argument
49 my $filename = shift; 52 my $filename = shift;
50 my $search = shift; 53 my $search = shift;
51 54
52 # Process the file. 55 # Process the file.
53 process_raw($filename, $search); 56 process_raw($filename, $search);
OLDNEW
« no previous file with comments | « tools/json_comment_eater.py ('k') | tools/memory_watcher/scripts/memprof.pl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698