| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 #include "modules/webdatabase/SQLTransactionClient.h" | 31 #include "modules/webdatabase/SQLTransactionClient.h" |
| 32 | 32 |
| 33 #include "core/dom/ExecutionContext.h" | 33 #include "core/dom/ExecutionContext.h" |
| 34 #include "core/dom/TaskRunnerHelper.h" | 34 #include "core/dom/TaskRunnerHelper.h" |
| 35 #include "modules/webdatabase/Database.h" | 35 #include "modules/webdatabase/Database.h" |
| 36 #include "modules/webdatabase/DatabaseContext.h" | 36 #include "modules/webdatabase/DatabaseContext.h" |
| 37 #include "platform/CrossThreadFunctional.h" | 37 #include "platform/CrossThreadFunctional.h" |
| 38 #include "platform/WebTaskRunner.h" | 38 #include "platform/WebTaskRunner.h" |
| 39 #include "platform/weborigin/SecurityOrigin.h" | 39 #include "platform/weborigin/SecurityOrigin.h" |
| 40 #include "platform/wtf/Functional.h" |
| 40 #include "public/platform/Platform.h" | 41 #include "public/platform/Platform.h" |
| 41 #include "public/platform/WebDatabaseObserver.h" | 42 #include "public/platform/WebDatabaseObserver.h" |
| 42 #include "public/platform/WebSecurityOrigin.h" | 43 #include "public/platform/WebSecurityOrigin.h" |
| 43 #include "public/platform/WebTraceLocation.h" | 44 #include "public/platform/WebTraceLocation.h" |
| 44 #include "wtf/Functional.h" | |
| 45 | 45 |
| 46 namespace blink { | 46 namespace blink { |
| 47 | 47 |
| 48 namespace { | 48 namespace { |
| 49 | 49 |
| 50 void DatabaseModified(const WebSecurityOrigin& origin, | 50 void DatabaseModified(const WebSecurityOrigin& origin, |
| 51 const String& database_name) { | 51 const String& database_name) { |
| 52 if (Platform::Current()->DatabaseObserver()) | 52 if (Platform::Current()->DatabaseObserver()) |
| 53 Platform::Current()->DatabaseObserver()->DatabaseModified(origin, | 53 Platform::Current()->DatabaseObserver()->DatabaseModified(origin, |
| 54 database_name); | 54 database_name); |
| (...skipping 23 matching lines...) Expand all Loading... |
| 78 | 78 |
| 79 bool SQLTransactionClient::DidExceedQuota(Database* database) { | 79 bool SQLTransactionClient::DidExceedQuota(Database* database) { |
| 80 // Chromium does not allow users to manually change the quota for an origin | 80 // Chromium does not allow users to manually change the quota for an origin |
| 81 // (for now, at least). Don't do anything. | 81 // (for now, at least). Don't do anything. |
| 82 ASSERT( | 82 ASSERT( |
| 83 database->GetDatabaseContext()->GetExecutionContext()->IsContextThread()); | 83 database->GetDatabaseContext()->GetExecutionContext()->IsContextThread()); |
| 84 return false; | 84 return false; |
| 85 } | 85 } |
| 86 | 86 |
| 87 } // namespace blink | 87 } // namespace blink |
| OLD | NEW |