| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. |
| 3 * Copyright (C) 2009, 2011 Google Inc. All Rights Reserved. | 3 * Copyright (C) 2009, 2011 Google Inc. 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 | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 #include "RuntimeEnabledFeatures.h" | 32 #include "RuntimeEnabledFeatures.h" |
| 33 #include "bindings/v8/ExceptionMessages.h" | 33 #include "bindings/v8/ExceptionMessages.h" |
| 34 #include "bindings/v8/ExceptionState.h" | 34 #include "bindings/v8/ExceptionState.h" |
| 35 #include "core/dom/ExceptionCode.h" | 35 #include "core/dom/ExceptionCode.h" |
| 36 #include "core/workers/WorkerGlobalScope.h" | 36 #include "core/workers/WorkerGlobalScope.h" |
| 37 #include "modules/webdatabase/Database.h" | 37 #include "modules/webdatabase/Database.h" |
| 38 #include "modules/webdatabase/DatabaseCallback.h" | 38 #include "modules/webdatabase/DatabaseCallback.h" |
| 39 #include "modules/webdatabase/DatabaseManager.h" | 39 #include "modules/webdatabase/DatabaseManager.h" |
| 40 #include "modules/webdatabase/DatabaseSync.h" | 40 #include "modules/webdatabase/DatabaseSync.h" |
| 41 #include "weborigin/SecurityOrigin.h" | 41 #include "platform/weborigin/SecurityOrigin.h" |
| 42 | 42 |
| 43 namespace WebCore { | 43 namespace WebCore { |
| 44 | 44 |
| 45 PassRefPtr<Database> WorkerGlobalScopeWebDatabase::openDatabase(WorkerGlobalScop
e* context, const String& name, const String& version, const String& displayName
, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, Ex
ceptionState& es) | 45 PassRefPtr<Database> WorkerGlobalScopeWebDatabase::openDatabase(WorkerGlobalScop
e* context, const String& name, const String& version, const String& displayName
, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, Ex
ceptionState& es) |
| 46 { | 46 { |
| 47 DatabaseManager& dbManager = DatabaseManager::manager(); | 47 DatabaseManager& dbManager = DatabaseManager::manager(); |
| 48 RefPtr<Database> database; | 48 RefPtr<Database> database; |
| 49 DatabaseError error = DatabaseError::None; | 49 DatabaseError error = DatabaseError::None; |
| 50 if (RuntimeEnabledFeatures::databaseEnabled() && context->securityOrigin()->
canAccessDatabase()) { | 50 if (RuntimeEnabledFeatures::databaseEnabled() && context->securityOrigin()->
canAccessDatabase()) { |
| 51 String errorMessage; | 51 String errorMessage; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 72 if (error != DatabaseError::None) | 72 if (error != DatabaseError::None) |
| 73 DatabaseManager::throwExceptionForDatabaseError("openDatabaseSync",
"WorkerGlobalScope", error, errorMessage, es); | 73 DatabaseManager::throwExceptionForDatabaseError("openDatabaseSync",
"WorkerGlobalScope", error, errorMessage, es); |
| 74 } else { | 74 } else { |
| 75 es.throwSecurityError(ExceptionMessages::failedToExecute("openDatabaseSy
nc", "WorkerGlobalScope", "Access to the WebDatabase API is denied in this conte
xt.")); | 75 es.throwSecurityError(ExceptionMessages::failedToExecute("openDatabaseSy
nc", "WorkerGlobalScope", "Access to the WebDatabase API is denied in this conte
xt.")); |
| 76 } | 76 } |
| 77 | 77 |
| 78 return database.release(); | 78 return database.release(); |
| 79 } | 79 } |
| 80 | 80 |
| 81 } // namespace WebCore | 81 } // namespace WebCore |
| OLD | NEW |