| Index: Source/bindings/v8/DOMWrapperMap.h
|
| diff --git a/Source/bindings/v8/DOMWrapperMap.h b/Source/bindings/v8/DOMWrapperMap.h
|
| index 3390a55c1b3051e86ca53f30d949744aa29384bf..60decd3c5ad444b88d657f93a2786ccc1cbf5ea7 100644
|
| --- a/Source/bindings/v8/DOMWrapperMap.h
|
| +++ b/Source/bindings/v8/DOMWrapperMap.h
|
| @@ -70,7 +70,7 @@ public:
|
| void set(KeyType* key, v8::Handle<v8::Object> wrapper, const WrapperConfiguration& configuration)
|
| {
|
| ASSERT(static_cast<KeyType*>(toNative(wrapper)) == key);
|
| - ASSERT(!containsKey(key));
|
| + RELEASE_ASSERT(!containsKey(key)); // See crbug.com/368095
|
| v8::UniquePersistent<v8::Object> unique(m_isolate, wrapper);
|
| configuration.configureWrapper(&unique);
|
| m_map.Set(key, unique.Pass());
|
|
|