| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2014 Opera Software ASA. All rights reserved. | 3 * Copyright (C) 2014 Opera Software ASA. 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 are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 }; | 68 }; |
| 69 | 69 |
| 70 CORE_EXPORT NPObject* npCreateV8ScriptObject(v8::Isolate*, NPP, v8::Local<v8::Ob
ject>, LocalDOMWindow*); | 70 CORE_EXPORT NPObject* npCreateV8ScriptObject(v8::Isolate*, NPP, v8::Local<v8::Ob
ject>, LocalDOMWindow*); |
| 71 | 71 |
| 72 NPObject* v8ObjectToNPObject(v8::Local<v8::Object>); | 72 NPObject* v8ObjectToNPObject(v8::Local<v8::Object>); |
| 73 | 73 |
| 74 bool isWrappedNPObject(v8::Local<v8::Object>); | 74 bool isWrappedNPObject(v8::Local<v8::Object>); |
| 75 | 75 |
| 76 CORE_EXPORT V8NPObject* npObjectToV8NPObject(NPObject*); | 76 CORE_EXPORT V8NPObject* npObjectToV8NPObject(NPObject*); |
| 77 | 77 |
| 78 ScriptWrappable* npObjectToScriptWrappable(NPObject*); | |
| 79 | |
| 80 void disposeUnderlyingV8Object(v8::Isolate*, NPObject*); | 78 void disposeUnderlyingV8Object(v8::Isolate*, NPObject*); |
| 81 | 79 |
| 82 } // namespace blink | 80 } // namespace blink |
| 83 | 81 |
| 84 #endif // NPV8Object_h | 82 #endif // NPV8Object_h |
| OLD | NEW |