Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Side by Side Diff: Source/bindings/v8/NPV8Object.cpp

Issue 293963003: Remove ScriptObject (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2006 Apple Computer, Inc. All rights reserved. 2 * Copyright (C) 2004, 2006 Apple Computer, Inc. All rights reserved.
3 * Copyright (C) 2007, 2008, 2009 Google, Inc. All rights reserved. 3 * Copyright (C) 2007, 2008, 2009 Google, Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 char buffer[32]; 107 char buffer[32];
108 snprintf(buffer, sizeof(buffer), "%d", identifier->value.number); 108 snprintf(buffer, sizeof(buffer), "%d", identifier->value.number);
109 return v8AtomicString(isolate, buffer); 109 return v8AtomicString(isolate, buffer);
110 } 110 }
111 111
112 NPObject* v8ObjectToNPObject(v8::Handle<v8::Object> object) 112 NPObject* v8ObjectToNPObject(v8::Handle<v8::Object> object)
113 { 113 {
114 return reinterpret_cast<NPObject*>(object->GetAlignedPointerFromInternalFiel d(v8DOMWrapperObjectIndex)); 114 return reinterpret_cast<NPObject*>(object->GetAlignedPointerFromInternalFiel d(v8DOMWrapperObjectIndex));
115 } 115 }
116 116
117 NPObject* npCreateV8ScriptObject(NPP npp, v8::Handle<v8::Object> object, DOMWind ow* root, v8::Isolate* isolate) 117 NPObject* npCreateV8ScriptValue(NPP npp, v8::Handle<v8::Object> object, DOMWindo w* root, v8::Isolate* isolate)
118 { 118 {
119 // Check to see if this object is already wrapped. 119 // Check to see if this object is already wrapped.
120 if (object->InternalFieldCount() == npObjectInternalFieldCount) { 120 if (object->InternalFieldCount() == npObjectInternalFieldCount) {
121 const WrapperTypeInfo* typeInfo = static_cast<const WrapperTypeInfo*>(ob ject->GetAlignedPointerFromInternalField(v8DOMWrapperTypeIndex)); 121 const WrapperTypeInfo* typeInfo = static_cast<const WrapperTypeInfo*>(ob ject->GetAlignedPointerFromInternalField(v8DOMWrapperTypeIndex));
122 if (typeInfo == npObjectTypeInfo()) { 122 if (typeInfo == npObjectTypeInfo()) {
123 NPObject* returnValue = v8ObjectToNPObject(object); 123 NPObject* returnValue = v8ObjectToNPObject(object);
124 _NPN_RetainObject(returnValue); 124 _NPN_RetainObject(returnValue);
125 return returnValue; 125 return returnValue;
126 } 126 }
127 } 127 }
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
605 605
606 convertV8ObjectToNPVariant(resultObject, npObject, result, isolate); 606 convertV8ObjectToNPVariant(resultObject, npObject, result, isolate);
607 return true; 607 return true;
608 } 608 }
609 609
610 if (NP_CLASS_STRUCT_VERSION_HAS_CTOR(npObject->_class) && npObject->_class-> construct) 610 if (NP_CLASS_STRUCT_VERSION_HAS_CTOR(npObject->_class) && npObject->_class-> construct)
611 return npObject->_class->construct(npObject, arguments, argumentCount, r esult); 611 return npObject->_class->construct(npObject, arguments, argumentCount, r esult);
612 612
613 return false; 613 return false;
614 } 614 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698