Changeset 139622 in webkit


Ignore:
Timestamp:
Jan 14, 2013 9:43:53 AM (11 years ago)
Author:
haraken@chromium.org
Message:

[V8] Make an Isolate parameter mandatory in associateObjectWithWrapper()
https://bugs.webkit.org/show_bug.cgi?id=106784

Reviewed by Adam Barth.

No tests. No change in behavior.

  • bindings/v8/V8DOMWrapper.h:

(V8DOMWrapper):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r139621 r139622  
     12013-01-14  Kentaro Hara  <haraken@chromium.org>
     2
     3        [V8] Make an Isolate parameter mandatory in associateObjectWithWrapper()
     4        https://bugs.webkit.org/show_bug.cgi?id=106784
     5
     6        Reviewed by Adam Barth.
     7
     8        No tests. No change in behavior.
     9
     10        * bindings/v8/V8DOMWrapper.h:
     11        (V8DOMWrapper):
     12
    1132013-01-14  Kentaro Hara  <haraken@chromium.org>
    214
  • trunk/Source/WebCore/bindings/v8/V8DOMWrapper.h

    r136652 r139622  
    6262
    6363        template<typename T>
    64         static inline v8::Persistent<v8::Object> associateObjectWithWrapper(PassRefPtr<T>, WrapperTypeInfo*, v8::Handle<v8::Object>, v8::Isolate* = 0);
     64        static inline v8::Persistent<v8::Object> associateObjectWithWrapper(PassRefPtr<T>, WrapperTypeInfo*, v8::Handle<v8::Object>, v8::Isolate*);
    6565        static inline void setNativeInfo(v8::Handle<v8::Object>, WrapperTypeInfo*, void*);
    6666        static inline void clearNativeInfo(v8::Handle<v8::Object>, WrapperTypeInfo*);
Note: See TracChangeset for help on using the changeset viewer.