| Index: webkit/port/bindings/v8/v8_index.h
|
| ===================================================================
|
| --- webkit/port/bindings/v8/v8_index.h (revision 18002)
|
| +++ webkit/port/bindings/v8/v8_index.h (working copy)
|
| @@ -349,10 +349,19 @@
|
| #define DOM_OBJECT_DATABASE_TYPES(V)
|
| #endif
|
|
|
| +#if ENABLE(DOM_STORAGE)
|
| +#define DOM_OBJECT_STORAGE_TYPES(V) \
|
| + V(STORAGE, Storage) \
|
| + V(STORAGEEVENT, StorageEvent)
|
| +#else
|
| +#define DOM_OBJECT_STORAGE_TYPES(V)
|
| +#endif
|
| +
|
| #define DOM_OBJECT_TYPES(V) \
|
| DOM_OBJECT_TYPES_1(V) \
|
| DOM_OBJECT_TYPES_2(V) \
|
| - DOM_OBJECT_DATABASE_TYPES(V)
|
| + DOM_OBJECT_DATABASE_TYPES(V) \
|
| + DOM_OBJECT_STORAGE_TYPES(V)
|
|
|
| #if ENABLE(SVG)
|
| // SVG_OBJECT_TYPES are svg non-node, non-pod types.
|
|
|