RESOLVED FIXED Bug 121440
Web Inspector: Hit InspectorTypeBuilder enums with a less ugly stick
https://bugs.webkit.org/show_bug.cgi?id=121440
Summary Web Inspector: Hit InspectorTypeBuilder enums with a less ugly stick
Timothy Hatcher
Reported 2013-09-16 09:47:17 PDT
Enums for C++ are currently like this: struct StyleSheetOrigin { enum Enum { User = 51, User_agent = 52, Inspector = 53, Regular = 54, }; }; // struct StyleSheetOrigin They should be like this: struct StyleSheetOrigin { enum Enum { User = 51, UserAgent = 52, Inspector = 53, Regular = 54, }; }; // struct StyleSheetOrigin
Attachments
Patch (11.03 KB, patch)
2013-09-16 09:50 PDT, Timothy Hatcher
no flags
Radar WebKit Bug Importer
Comment 1 2013-09-16 09:47:50 PDT
Timothy Hatcher
Comment 2 2013-09-16 09:50:22 PDT
WebKit Commit Bot
Comment 3 2013-09-16 11:20:00 PDT
Comment on attachment 211805 [details] Patch Clearing flags on attachment: 211805 Committed r155886: <http://trac.webkit.org/changeset/155886>
WebKit Commit Bot
Comment 4 2013-09-16 11:20:02 PDT
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.