| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 return false; | 209 return false; |
| 210 | 210 |
| 211 V8NPObject* v8NPObject = npObjectToV8NPObject(object); | 211 V8NPObject* v8NPObject = npObjectToV8NPObject(object); |
| 212 if (!v8NPObject) | 212 if (!v8NPObject) |
| 213 return false; | 213 return false; |
| 214 | 214 |
| 215 v8::HandleScope handleScope(isolate); | 215 v8::HandleScope handleScope(isolate); |
| 216 v8::Handle<v8::Object> v8Object = v8::Local<v8::Object>::New(isolate, v8NPOb
ject->v8Object); | 216 v8::Handle<v8::Object> v8Object = v8::Local<v8::Object>::New(isolate, v8NPOb
ject->v8Object); |
| 217 if (v8Object.IsEmpty()) | 217 if (v8Object.IsEmpty()) |
| 218 return false; | 218 return false; |
| 219 if (!V8Range::info.equals(toWrapperTypeInfo(v8Object))) | 219 if (!V8Range::wrapperTypeInfo.equals(toWrapperTypeInfo(v8Object))) |
| 220 return false; | 220 return false; |
| 221 | 221 |
| 222 Range* native = V8Range::HasInstanceInAnyWorld(v8Object, isolate) ? V8Range:
:toNative(v8Object) : 0; | 222 Range* native = V8Range::HasInstanceInAnyWorld(v8Object, isolate) ? V8Range:
:toNative(v8Object) : 0; |
| 223 if (!native) | 223 if (!native) |
| 224 return false; | 224 return false; |
| 225 | 225 |
| 226 *webRange = WebRange(native); | 226 *webRange = WebRange(native); |
| 227 return true; | 227 return true; |
| 228 } | 228 } |
| 229 | 229 |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 if (!v8Object) | 392 if (!v8Object) |
| 393 return v8::Undefined(isolate); | 393 return v8::Undefined(isolate); |
| 394 return convertNPVariantToV8Object(variant, v8Object->rootObject->frame()
->script().windowScriptNPObject(), isolate); | 394 return convertNPVariantToV8Object(variant, v8Object->rootObject->frame()
->script().windowScriptNPObject(), isolate); |
| 395 } | 395 } |
| 396 // Safe to pass 0 since we have checked the script object class to make sure
the | 396 // Safe to pass 0 since we have checked the script object class to make sure
the |
| 397 // argument is a primitive v8 type. | 397 // argument is a primitive v8 type. |
| 398 return convertNPVariantToV8Object(variant, 0, isolate); | 398 return convertNPVariantToV8Object(variant, 0, isolate); |
| 399 } | 399 } |
| 400 | 400 |
| 401 } // namespace WebKit | 401 } // namespace WebKit |
| OLD | NEW |