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

Side by Side Diff: Tools/Scripts/check-for-global-initializers

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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 | « Source/web/tests/data/subtree-layout.html ('k') | Tools/Scripts/parse-malloc-history » ('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 2
3 # Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. 3 # Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
4 # 4 #
5 # Redistribution and use in source and binary forms, with or without 5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions 6 # modification, are permitted provided that the following conditions
7 # are met: 7 # are met:
8 # 8 #
9 # 1. Redistributions of source code must retain the above copyright 9 # 1. Redistributions of source code must retain the above copyright
10 # notice, this list of conditions and the following disclaimer. 10 # notice, this list of conditions and the following disclaimer.
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 next if $shortName eq "BidiRun.o"; 108 next if $shortName eq "BidiRun.o";
109 next if $shortName eq "CachedPage.o"; 109 next if $shortName eq "CachedPage.o";
110 next if $shortName eq "CachedResource.o"; 110 next if $shortName eq "CachedResource.o";
111 next if $shortName eq "FEGaussianBlur.o"; 111 next if $shortName eq "FEGaussianBlur.o";
112 next if $shortName eq "Frame.o"; 112 next if $shortName eq "Frame.o";
113 next if $shortName eq "JSCustomSQLTransactionCallback.o"; 113 next if $shortName eq "JSCustomSQLTransactionCallback.o";
114 next if $shortName eq "JSLazyEventListener.o"; 114 next if $shortName eq "JSLazyEventListener.o";
115 next if $shortName eq "Node.o"; 115 next if $shortName eq "Node.o";
116 next if $shortName eq "Page.o"; 116 next if $shortName eq "Page.o";
117 next if $shortName eq "Range.o"; 117 next if $shortName eq "Range.o";
118 next if $shortName eq "RenderObject.o"; 118 next if $shortName eq "LayoutObject.o";
119 next if $shortName eq "SVGElementInstance.o"; 119 next if $shortName eq "SVGElementInstance.o";
120 next if $shortName eq "SubresourceLoader.o"; 120 next if $shortName eq "SubresourceLoader.o";
121 next if $shortName eq "XMLHttpRequest.o"; 121 next if $shortName eq "XMLHttpRequest.o";
122 } 122 }
123 if ($target eq "WebKit") { 123 if ($target eq "WebKit") {
124 next if $shortName eq "HostedNetscapePluginStream.o"; 124 next if $shortName eq "HostedNetscapePluginStream.o";
125 next if $shortName eq "NetscapePluginInstanceProxy.o"; 125 next if $shortName eq "NetscapePluginInstanceProxy.o";
126 } 126 }
127 if ($target eq "WebKit2") { 127 if ($target eq "WebKit2") {
128 next if $shortName eq "WebContext.o"; 128 next if $shortName eq "WebContext.o";
(...skipping 29 matching lines...) Expand all
158 if (!open FILT, "c++filt $symbol |") { 158 if (!open FILT, "c++filt $symbol |") {
159 print "ERROR: Could not open c++filt\n"; 159 print "ERROR: Could not open c++filt\n";
160 return; 160 return;
161 } 161 }
162 my $result = <FILT>; 162 my $result = <FILT>;
163 close FILT; 163 close FILT;
164 chomp $result; 164 chomp $result;
165 return $result; 165 return $result;
166 } 166 }
167 167
OLDNEW
« no previous file with comments | « Source/web/tests/data/subtree-layout.html ('k') | Tools/Scripts/parse-malloc-history » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698