| 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 28 matching lines...) Expand all Loading... |
| 39 namespace v8 { | 39 namespace v8 { |
| 40 class Value; | 40 class Value; |
| 41 template <class T> class Handle; | 41 template <class T> class Handle; |
| 42 template <class T> class Local; | 42 template <class T> class Local; |
| 43 } | 43 } |
| 44 | 44 |
| 45 namespace blink { | 45 namespace blink { |
| 46 | 46 |
| 47 class WebArrayBuffer; | 47 class WebArrayBuffer; |
| 48 class WebArrayBufferView; | 48 class WebArrayBufferView; |
| 49 class WebDragData; | |
| 50 class WebElement; | 49 class WebElement; |
| 51 class WebNode; | 50 class WebNode; |
| 52 class WebRange; | 51 class WebRange; |
| 53 | 52 |
| 54 // A haphazard collection of functions for dealing with plugins. | 53 // A haphazard collection of functions for dealing with plugins. |
| 55 class WebBindings { | 54 class WebBindings { |
| 56 public: | 55 public: |
| 57 // NPN Functions ------------------------------------------------------ | 56 // NPN Functions ------------------------------------------------------ |
| 58 // These are all defined in npruntime.h and are well documented. | 57 // These are all defined in npruntime.h and are well documented. |
| 59 | 58 |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 BLINK_EXPORT static void popExceptionHandler(); | 184 BLINK_EXPORT static void popExceptionHandler(); |
| 186 | 185 |
| 187 // Conversion utilities to/from V8 native objects and NPVariant wrappers. | 186 // Conversion utilities to/from V8 native objects and NPVariant wrappers. |
| 188 BLINK_EXPORT static void toNPVariant(v8::Local<v8::Value>, NPObject* root, N
PVariant* result); | 187 BLINK_EXPORT static void toNPVariant(v8::Local<v8::Value>, NPObject* root, N
PVariant* result); |
| 189 BLINK_EXPORT static v8::Handle<v8::Value> toV8Value(const NPVariant*); | 188 BLINK_EXPORT static v8::Handle<v8::Value> toV8Value(const NPVariant*); |
| 190 }; | 189 }; |
| 191 | 190 |
| 192 } // namespace blink | 191 } // namespace blink |
| 193 | 192 |
| 194 #endif | 193 #endif |
| OLD | NEW |