| Index: Source/WebCore/bindings/v8/custom/V8InjectedScriptHostCustom.cpp
|
| diff --git a/Source/WebCore/bindings/v8/custom/V8InjectedScriptHostCustom.cpp b/Source/WebCore/bindings/v8/custom/V8InjectedScriptHostCustom.cpp
|
| index 2fc50f886a4373f0c2caf8032c2252721c3bb9e8..a4ed4ac24136c94849308c457b9bb30ba0e48c12 100644
|
| --- a/Source/WebCore/bindings/v8/custom/V8InjectedScriptHostCustom.cpp
|
| +++ b/Source/WebCore/bindings/v8/custom/V8InjectedScriptHostCustom.cpp
|
| @@ -286,12 +286,10 @@ v8::Handle<v8::Value> V8InjectedScriptHost::databaseIdMethodCustom(const v8::Arg
|
| {
|
| if (args.Length() < 1)
|
| return v8::Undefined();
|
| -#if ENABLE(SQL_DATABASE)
|
| InjectedScriptHost* host = V8InjectedScriptHost::toNative(args.Holder());
|
| Database* database = V8Database::toNative(v8::Handle<v8::Object>::Cast(args[0]));
|
| if (database)
|
| return v8StringOrUndefined(host->databaseIdImpl(database), args.GetIsolate());
|
| -#endif
|
| return v8::Undefined();
|
| }
|
|
|
|
|