Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(359)

Side by Side Diff: Source/modules/webdatabase/Database.cpp

Issue 54053006: Move weborigin/ under platform/ so that it may someday call platform APIs (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Stale refernence to weboriginexport in .gpyi Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007, 2008, 2013 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2008, 2013 Apple 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
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 29 matching lines...) Expand all
40 #include "modules/webdatabase/DatabaseCallback.h" 40 #include "modules/webdatabase/DatabaseCallback.h"
41 #include "modules/webdatabase/DatabaseContext.h" 41 #include "modules/webdatabase/DatabaseContext.h"
42 #include "modules/webdatabase/DatabaseManager.h" 42 #include "modules/webdatabase/DatabaseManager.h"
43 #include "modules/webdatabase/DatabaseTask.h" 43 #include "modules/webdatabase/DatabaseTask.h"
44 #include "modules/webdatabase/DatabaseThread.h" 44 #include "modules/webdatabase/DatabaseThread.h"
45 #include "modules/webdatabase/DatabaseTracker.h" 45 #include "modules/webdatabase/DatabaseTracker.h"
46 #include "modules/webdatabase/SQLError.h" 46 #include "modules/webdatabase/SQLError.h"
47 #include "modules/webdatabase/SQLTransaction.h" 47 #include "modules/webdatabase/SQLTransaction.h"
48 #include "modules/webdatabase/SQLTransactionCallback.h" 48 #include "modules/webdatabase/SQLTransactionCallback.h"
49 #include "modules/webdatabase/SQLTransactionErrorCallback.h" 49 #include "modules/webdatabase/SQLTransactionErrorCallback.h"
50 #include "weborigin/SecurityOrigin.h" 50 #include "platform/weborigin/SecurityOrigin.h"
51 #include "wtf/OwnPtr.h" 51 #include "wtf/OwnPtr.h"
52 #include "wtf/PassOwnPtr.h" 52 #include "wtf/PassOwnPtr.h"
53 #include "wtf/PassRefPtr.h" 53 #include "wtf/PassRefPtr.h"
54 #include "wtf/RefPtr.h" 54 #include "wtf/RefPtr.h"
55 #include "wtf/StdLibExtras.h" 55 #include "wtf/StdLibExtras.h"
56 #include "wtf/text/CString.h" 56 #include "wtf/text/CString.h"
57 57
58 namespace WebCore { 58 namespace WebCore {
59 59
60 PassRefPtr<Database> Database::create(ExecutionContext*, PassRefPtr<DatabaseBack endBase> backend) 60 PassRefPtr<Database> Database::create(ExecutionContext*, PassRefPtr<DatabaseBack endBase> backend)
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 backend()->reportStartTransactionResult(errorSite, webSqlErrorCode, sqliteEr rorCode); 284 backend()->reportStartTransactionResult(errorSite, webSqlErrorCode, sqliteEr rorCode);
285 } 285 }
286 286
287 void Database::reportCommitTransactionResult(int errorSite, int webSqlErrorCode, int sqliteErrorCode) 287 void Database::reportCommitTransactionResult(int errorSite, int webSqlErrorCode, int sqliteErrorCode)
288 { 288 {
289 backend()->reportCommitTransactionResult(errorSite, webSqlErrorCode, sqliteE rrorCode); 289 backend()->reportCommitTransactionResult(errorSite, webSqlErrorCode, sqliteE rrorCode);
290 } 290 }
291 291
292 292
293 } // namespace WebCore 293 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/modules/webdatabase/DOMWindowWebDatabase.cpp ('k') | Source/modules/webdatabase/DatabaseBackendBase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698