OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
3 * Copyright (C) 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2013 Apple 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 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 22 matching lines...) Expand all Loading... | |
33 #include "core/dom/ExceptionCode.h" | 33 #include "core/dom/ExceptionCode.h" |
34 #include "platform/Logging.h" | 34 #include "platform/Logging.h" |
35 #include "modules/webdatabase/DatabaseAuthorizer.h" | 35 #include "modules/webdatabase/DatabaseAuthorizer.h" |
36 #include "modules/webdatabase/DatabaseBase.h" | 36 #include "modules/webdatabase/DatabaseBase.h" |
37 #include "modules/webdatabase/DatabaseContext.h" | 37 #include "modules/webdatabase/DatabaseContext.h" |
38 #include "modules/webdatabase/DatabaseManager.h" | 38 #include "modules/webdatabase/DatabaseManager.h" |
39 #include "modules/webdatabase/DatabaseTracker.h" | 39 #include "modules/webdatabase/DatabaseTracker.h" |
40 #include "modules/webdatabase/sqlite/SQLiteStatement.h" | 40 #include "modules/webdatabase/sqlite/SQLiteStatement.h" |
41 #include "modules/webdatabase/sqlite/SQLiteTransaction.h" | 41 #include "modules/webdatabase/sqlite/SQLiteTransaction.h" |
42 #include "platform/weborigin/DatabaseIdentifier.h" | 42 #include "platform/weborigin/DatabaseIdentifier.h" |
43 #include "platform/weborigin/SecurityOrigin.h" | |
Nico
2013/12/09 02:01:27
The header includes this only conditionally:
#if
| |
44 #include "public/platform/Platform.h" | 43 #include "public/platform/Platform.h" |
45 #include "public/platform/WebDatabaseObserver.h" | 44 #include "public/platform/WebDatabaseObserver.h" |
46 #include "wtf/HashMap.h" | 45 #include "wtf/HashMap.h" |
47 #include "wtf/HashSet.h" | 46 #include "wtf/HashSet.h" |
48 #include "wtf/PassRefPtr.h" | 47 #include "wtf/PassRefPtr.h" |
49 #include "wtf/StdLibExtras.h" | 48 #include "wtf/StdLibExtras.h" |
50 #include "wtf/text/CString.h" | 49 #include "wtf/text/CString.h" |
51 #include "wtf/text/StringHash.h" | 50 #include "wtf/text/StringHash.h" |
52 | 51 |
53 // Registering "opened" databases with the DatabaseTracker | 52 // Registering "opened" databases with the DatabaseTracker |
(...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
659 { | 658 { |
660 if (blink::Platform::current()->databaseObserver()) { | 659 if (blink::Platform::current()->databaseObserver()) { |
661 blink::Platform::current()->databaseObserver()->reportVacuumDatabaseResu lt( | 660 blink::Platform::current()->databaseObserver()->reportVacuumDatabaseResu lt( |
662 createDatabaseIdentifierFromSecurityOrigin(securityOrigin()), | 661 createDatabaseIdentifierFromSecurityOrigin(securityOrigin()), |
663 stringIdentifier(), isSyncDatabase(), sqliteErrorCode); | 662 stringIdentifier(), isSyncDatabase(), sqliteErrorCode); |
664 } | 663 } |
665 } | 664 } |
666 | 665 |
667 | 666 |
668 } // namespace WebCore | 667 } // namespace WebCore |
OLD | NEW |