Summary: | Add pass-throughs for NPObject/v8::Value marshalling to WebBindings | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Greg Billock <gbillock> | ||||||||
Component: | WebKit API | Assignee: | Nobody <webkit-unassigned> | ||||||||
Status: | RESOLVED FIXED | ||||||||||
Severity: | Normal | CC: | fishd, webkit.review.bot | ||||||||
Priority: | P2 | ||||||||||
Version: | 528+ (Nightly build) | ||||||||||
Hardware: | Unspecified | ||||||||||
OS: | Unspecified | ||||||||||
Attachments: |
|
Description
Greg Billock
2011-08-31 11:01:52 PDT
Created attachment 105796 [details]
Patch
Comment on attachment 105796 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=105796&action=review > Source/WebKit/chromium/public/WebBindings.h:169 > + WEBKIT_EXPORT static v8::Handle<v8::Value> convertNPVariantToV8Object(const NPVariant*); This returns a v8::Value, not a v8::Object. Maybe the name should be convertNPVariantToV8Value? or, maybe we could even use short-cuts like: toV8Value toNPVariant Comment on attachment 105796 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=105796&action=review >> Source/WebKit/chromium/public/WebBindings.h:169 >> + WEBKIT_EXPORT static v8::Handle<v8::Value> convertNPVariantToV8Object(const NPVariant*); > > This returns a v8::Value, not a v8::Object. Maybe the name should be convertNPVariantToV8Value? or, maybe we could even use short-cuts like: > > toV8Value > toNPVariant I'm happy to switch to that. I was basically copying the V8NPUtils names exactly to make the wrapping very clear. It looked like other WebBindings and Web* APIs tended to do that, although not universally. Created attachment 105847 [details]
Patch
Comment on attachment 105847 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=105847&action=review > Source/WebKit/chromium/public/WebBindings.h:167 > + // Conversion utilities to/from V8 native objects and NPObject wrappers. nit: s/NPObject/NPVariant/ > Source/WebKit/chromium/src/WebBindings.cpp:339 > + WebCore::convertV8ObjectToNPVariant(object, root, result); nit: note the 'using namespace WebCore' at the top of this file. you can drop the WebCore:: prefixes. > Source/WebKit/chromium/src/WebBindings.cpp:346 > + if (object->_class != WebCore::npScriptObjectClass) ditto > Source/WebKit/chromium/src/WebBindings.cpp:353 > + return WebCore::convertNPVariantToV8Object(variant, static_cast<NPObject*>(0)); is the static_cast necessary? can you just get by passing 0 or nullptr? Comment on attachment 105847 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=105847&action=review >> Source/WebKit/chromium/public/WebBindings.h:167 >> + // Conversion utilities to/from V8 native objects and NPObject wrappers. > > nit: s/NPObject/NPVariant/ Done. >> Source/WebKit/chromium/src/WebBindings.cpp:339 >> + WebCore::convertV8ObjectToNPVariant(object, root, result); > > nit: note the 'using namespace WebCore' at the top of this file. you can drop the WebCore:: prefixes. Done. >> Source/WebKit/chromium/src/WebBindings.cpp:346 >> + if (object->_class != WebCore::npScriptObjectClass) > > ditto Done. >> Source/WebKit/chromium/src/WebBindings.cpp:353 >> + return WebCore::convertNPVariantToV8Object(variant, static_cast<NPObject*>(0)); > > is the static_cast necessary? can you just get by passing 0 or nullptr? Yeah, that works. Changed. Created attachment 105863 [details]
Patch
Comment on attachment 105863 [details] Patch Clearing flags on attachment: 105863 Committed r94277: <http://trac.webkit.org/changeset/94277> All reviewed patches have been landed. Closing bug. |