| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 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 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 #include "WebCommonWorkerClient.h" | 34 #include "WebCommonWorkerClient.h" |
| 35 #include "WebDatabase.h" | 35 #include "WebDatabase.h" |
| 36 #include "WebDatabaseObserver.h" | 36 #include "WebDatabaseObserver.h" |
| 37 #include "WebFrameClient.h" | 37 #include "WebFrameClient.h" |
| 38 #include "WebFrameImpl.h" | 38 #include "WebFrameImpl.h" |
| 39 #include "WebPermissionClient.h" | 39 #include "WebPermissionClient.h" |
| 40 #include "WebSecurityOrigin.h" | 40 #include "WebSecurityOrigin.h" |
| 41 #include "WebViewImpl.h" | 41 #include "WebViewImpl.h" |
| 42 #include "WebWorkerBase.h" | 42 #include "WebWorkerBase.h" |
| 43 #include "WorkerScriptController.h" | 43 #include "bindings/v8/WorkerScriptController.h" |
| 44 #include "core/dom/CrossThreadTask.h" | 44 #include "core/dom/CrossThreadTask.h" |
| 45 #include "core/dom/Document.h" | 45 #include "core/dom/Document.h" |
| 46 #include "core/dom/ScriptExecutionContext.h" | 46 #include "core/dom/ScriptExecutionContext.h" |
| 47 #include "core/platform/CrossThreadCopier.h" | 47 #include "core/platform/CrossThreadCopier.h" |
| 48 #include "core/workers/WorkerContext.h" | 48 #include "core/workers/WorkerContext.h" |
| 49 #include "core/workers/WorkerLoaderProxy.h" | 49 #include "core/workers/WorkerLoaderProxy.h" |
| 50 #include "core/workers/WorkerThread.h" | 50 #include "core/workers/WorkerThread.h" |
| 51 #include "modules/webdatabase/DatabaseBackendBase.h" | 51 #include "modules/webdatabase/DatabaseBackendBase.h" |
| 52 #include "modules/webdatabase/DatabaseBackendContext.h" | 52 #include "modules/webdatabase/DatabaseBackendContext.h" |
| 53 | 53 |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 { | 210 { |
| 211 WebDatabase::observer()->reportExecuteStatementResult(WebDatabase(database),
errorSite, webSqlErrorCode, sqliteErrorCode); | 211 WebDatabase::observer()->reportExecuteStatementResult(WebDatabase(database),
errorSite, webSqlErrorCode, sqliteErrorCode); |
| 212 } | 212 } |
| 213 | 213 |
| 214 void DatabaseObserver::reportVacuumDatabaseResult(DatabaseBackendBase* database,
int sqliteErrorCode) | 214 void DatabaseObserver::reportVacuumDatabaseResult(DatabaseBackendBase* database,
int sqliteErrorCode) |
| 215 { | 215 { |
| 216 WebDatabase::observer()->reportVacuumDatabaseResult(WebDatabase(database), s
qliteErrorCode); | 216 WebDatabase::observer()->reportVacuumDatabaseResult(WebDatabase(database), s
qliteErrorCode); |
| 217 } | 217 } |
| 218 | 218 |
| 219 } // namespace WebCore | 219 } // namespace WebCore |
| OLD | NEW |