OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
3 * Copyright (C) 2007 Justin Haygood (jhaygood@reaktix.com) | 3 * Copyright (C) 2007 Justin Haygood (jhaygood@reaktix.com) |
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 15 matching lines...) Expand all Loading... |
26 | 26 |
27 #include "config.h" | 27 #include "config.h" |
28 #include "modules/webdatabase/sqlite/SQLiteDatabase.h" | 28 #include "modules/webdatabase/sqlite/SQLiteDatabase.h" |
29 | 29 |
30 #include <sqlite3.h> | 30 #include <sqlite3.h> |
31 #include "platform/Logging.h" | 31 #include "platform/Logging.h" |
32 #include "modules/webdatabase/sqlite/SQLiteFileSystem.h" | 32 #include "modules/webdatabase/sqlite/SQLiteFileSystem.h" |
33 #include "modules/webdatabase/sqlite/SQLiteStatement.h" | 33 #include "modules/webdatabase/sqlite/SQLiteStatement.h" |
34 #include "modules/webdatabase/DatabaseAuthorizer.h" | 34 #include "modules/webdatabase/DatabaseAuthorizer.h" |
35 | 35 |
36 namespace WebCore { | 36 namespace blink { |
37 | 37 |
38 const int SQLResultDone = SQLITE_DONE; | 38 const int SQLResultDone = SQLITE_DONE; |
39 const int SQLResultOk = SQLITE_OK; | 39 const int SQLResultOk = SQLITE_OK; |
40 const int SQLResultRow = SQLITE_ROW; | 40 const int SQLResultRow = SQLITE_ROW; |
41 const int SQLResultFull = SQLITE_FULL; | 41 const int SQLResultFull = SQLITE_FULL; |
42 const int SQLResultInterrupt = SQLITE_INTERRUPT; | 42 const int SQLResultInterrupt = SQLITE_INTERRUPT; |
43 const int SQLResultConstraint = SQLITE_CONSTRAINT; | 43 const int SQLResultConstraint = SQLITE_CONSTRAINT; |
44 | 44 |
45 static const char notOpenErrorMessage[] = "database is not open"; | 45 static const char notOpenErrorMessage[] = "database is not open"; |
46 | 46 |
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
419 error = lastError(); | 419 error = lastError(); |
420 return (error == SQLITE_OK); | 420 return (error == SQLITE_OK); |
421 } | 421 } |
422 } | 422 } |
423 | 423 |
424 void SQLiteDatabase::trace(Visitor* visitor) | 424 void SQLiteDatabase::trace(Visitor* visitor) |
425 { | 425 { |
426 visitor->trace(m_authorizer); | 426 visitor->trace(m_authorizer); |
427 } | 427 } |
428 | 428 |
429 } // namespace WebCore | 429 } // namespace blink |
OLD | NEW |