WebKit Bugzilla
New
Browse
Search+
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
75082
REGRESSION(
r102987
): Fix the filename prefix of the generated empty .h and .cpp files for [Supplemental] IDLs
https://bugs.webkit.org/show_bug.cgi?id=75082
Summary
REGRESSION(r102987): Fix the filename prefix of the generated empty .h and .c...
Kentaro Hara
Reported
2011-12-22 06:05:39 PST
In
bug 74481
, we changed generate-bindings.pl so that it generates empty .h and .cpp files for the [Supplemental] IDLs. However, the filename prefix of those .h and .cpp files is wrong. Current behavior: generator=JS => JS*.h, JS*.cpp generator=V8 => V8*.h, V8*.cpp generator=ObjC => ObjC*.h, ObjC*.cpp generator=GObject => GObject*.h, GObject*.cpp generator=CPP => CPP*.h, CPP*.cpp Expected behavior: generator=JS => JS*.h, JS*.cpp generator=V8 => V8*.h, V8*.cpp generator=ObjC => DOM*.h, DOM*.cpp generator=GObject => WebKitDOM*.h, WebKitDOM*.cpp generator=CPP => WebDOM*.h, WebDOM*.cpp
Attachments
Patch
(2.70 KB, patch)
2011-12-22 06:13 PST
,
Kentaro Hara
no flags
Details
Formatted Diff
Diff
Patch
(8.64 KB, patch)
2011-12-24 10:42 PST
,
Kentaro Hara
no flags
Details
Formatted Diff
Diff
Patch
(8.59 KB, patch)
2011-12-24 11:10 PST
,
Kentaro Hara
no flags
Details
Formatted Diff
Diff
Show Obsolete
(2)
View All
Add attachment
proposed patch, testcase, etc.
Kentaro Hara
Comment 1
2011-12-22 06:13:41 PST
Created
attachment 120314
[details]
Patch
Adam Barth
Comment 2
2011-12-22 09:27:58 PST
Comment on
attachment 120314
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=120314&action=review
> Source/WebCore/bindings/scripts/generate-bindings.pl:258 > + my $prefix = ""; > + if ($generator eq "JS") { > + $prefix = "JS"; > + } elsif ($generator eq "V8") { > + $prefix = "V8"; > + } elsif ($generator eq "ObjC") { > + $prefix = "DOM"; > + } elsif ($generator eq "GObject") { > + $prefix = "WebKitDOM"; > + } elsif ($generator eq "CPP") { > + $prefix = "WebDOM"; > + } else { > + die "Unknown generator: $generator\n"; > + }
Yuck! Can we ask the generator what it's prefix should be rather than hardcoding a list of all the generator subclasses?
Kentaro Hara
Comment 3
2011-12-24 10:42:04 PST
Created
attachment 120499
[details]
Patch
Kentaro Hara
Comment 4
2011-12-24 11:10:55 PST
Created
attachment 120500
[details]
Patch
Kentaro Hara
Comment 5
2011-12-24 11:12:17 PST
(In reply to
comment #2
)
> (From update of
attachment 120314
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=120314&action=review
>
> Yuck! Can we ask the generator what it's prefix should be rather than hardcoding a list of all the generator subclasses?
Done.
WebKit Review Bot
Comment 6
2011-12-25 22:16:32 PST
Comment on
attachment 120500
[details]
Patch Clearing flags on attachment: 120500 Committed
r103678
: <
http://trac.webkit.org/changeset/103678
>
WebKit Review Bot
Comment 7
2011-12-25 22:16:37 PST
All reviewed patches have been landed. Closing bug.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug