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

Side by Side Diff: Source/core/scripts/make_names.pl

Issue 14524003: Absolutify paths to bindings/v8, bindings/v8/custom/. Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | « Source/core/plugins/DOMPluginArray.h ('k') | Source/core/storage/Storage.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 #!/usr/bin/perl -w 1 #!/usr/bin/perl -w
2 2
3 # Copyright (C) 2005, 2006, 2007, 2009 Apple Inc. All rights reserved. 3 # Copyright (C) 2005, 2006, 2007, 2009 Apple Inc. All rights reserved.
4 # Copyright (C) 2009, Julien Chaffraix <jchaffraix@webkit.org> 4 # Copyright (C) 2009, Julien Chaffraix <jchaffraix@webkit.org>
5 # Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmob ile.com/) 5 # Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmob ile.com/)
6 # Copyright (C) 2011 Ericsson AB. All rights reserved. 6 # Copyright (C) 2011 Ericsson AB. All rights reserved.
7 # 7 #
8 # Redistribution and use in source and binary forms, with or without 8 # Redistribution and use in source and binary forms, with or without
9 # modification, are permitted provided that the following conditions 9 # modification, are permitted provided that the following conditions
10 # are met: 10 # are met:
(...skipping 1092 matching lines...) Expand 10 before | Expand all | Expand 10 after
1103 1103
1104 print F <<END 1104 print F <<END
1105 1105
1106 #include "ContextFeatures.h" 1106 #include "ContextFeatures.h"
1107 #include "Document.h" 1107 #include "Document.h"
1108 #include "RuntimeEnabledFeatures.h" 1108 #include "RuntimeEnabledFeatures.h"
1109 #include "Settings.h" 1109 #include "Settings.h"
1110 1110
1111 #include "V8$parameters{namespace}Element.h" 1111 #include "V8$parameters{namespace}Element.h"
1112 1112
1113 #include "CustomElementHelpers.h" 1113 #include "bindings/v8/CustomElementHelpers.h"
1114 1114
1115 #include <v8.h> 1115 #include <v8.h>
1116 1116
1117 namespace WebCore { 1117 namespace WebCore {
1118 1118
1119 using namespace $parameters{namespace}Names; 1119 using namespace $parameters{namespace}Names;
1120 1120
1121 typedef v8::Handle<v8::Object> (*Create$parameters{namespace}ElementWrapperFunct ion)($parameters{namespace}Element*, v8::Handle<v8::Object> creationContext, v8: :Isolate*); 1121 typedef v8::Handle<v8::Object> (*Create$parameters{namespace}ElementWrapperFunct ion)($parameters{namespace}Element*, v8::Handle<v8::Object> creationContext, v8: :Isolate*);
1122 1122
1123 END 1123 END
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
1262 } 1262 }
1263 } 1263 }
1264 END 1264 END
1265 ; 1265 ;
1266 print F "#endif // $parameters{guardFactoryWith}\n\n" if $parameters{guardFa ctoryWith}; 1266 print F "#endif // $parameters{guardFactoryWith}\n\n" if $parameters{guardFa ctoryWith};
1267 1267
1268 print F "#endif // V8$parameters{namespace}ElementWrapperFactory_h\n"; 1268 print F "#endif // V8$parameters{namespace}ElementWrapperFactory_h\n";
1269 1269
1270 close F; 1270 close F;
1271 } 1271 }
OLDNEW
« no previous file with comments | « Source/core/plugins/DOMPluginArray.h ('k') | Source/core/storage/Storage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698