Commit 1b847237 authored by jorlow@chromium.org's avatar jorlow@chromium.org

2010-01-29 Jeremy Orlow <jorlow@chromium.org>

        Reviewed by Nate Chapin.

        [V8] Add compile time guards for IndexedDB custom functions
        https://bugs.webkit.org/show_bug.cgi?id=34368

        * bindings/v8/custom/V8IDBRequestCustom.cpp:
        * bindings/v8/custom/V8IndexedDatabaseRequestCustom.cpp:


git-svn-id: svn://svn.chromium.org/blink/trunk@54190 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 71549f61
2010-01-29 Jeremy Orlow <jorlow@chromium.org>
Reviewed by Nate Chapin.
[V8] Add compile time guards for IndexedDB custom functions
https://bugs.webkit.org/show_bug.cgi?id=34368
* bindings/v8/custom/V8IDBRequestCustom.cpp:
* bindings/v8/custom/V8IndexedDatabaseRequestCustom.cpp:
2010-01-29 Gavin Barraclough <barraclough@apple.com>
Reviewed by Sam Weinig + Oliver Hunt.
......
......@@ -29,6 +29,8 @@
*/
#include "config.h"
#if ENABLE(INDEXED_DATABASE)
#include "V8IDBRequest.h"
#include "SerializedScriptValue.h"
......@@ -47,3 +49,5 @@ v8::Handle<v8::Value> V8IDBRequest::resultAccessorGetter(v8::Local<v8::String> n
}
} // namespace WebCore
#endif
......@@ -29,6 +29,8 @@
*/
#include "config.h"
#if ENABLE(INDEXED_DATABASE)
#include "V8IndexedDatabaseRequest.h"
#include "V8Binding.h"
......@@ -55,3 +57,5 @@ v8::Handle<v8::Value> V8IndexedDatabaseRequest::openCallback(const v8::Arguments
}
} // namespace WebCore
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment