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

Side by Side Diff: third_party/WebKit/Source/modules/webdatabase/SQLStatement.cpp

Issue 2801083003: Rewrite references to "wtf/" to "platform/wtf/" in modules. (Closed)
Patch Set: Rebase again^3. Will try landing directly. Created 3 years, 8 months 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007, 2013 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 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 20 matching lines...) Expand all
31 #include "core/probe/CoreProbes.h" 31 #include "core/probe/CoreProbes.h"
32 #include "modules/webdatabase/Database.h" 32 #include "modules/webdatabase/Database.h"
33 #include "modules/webdatabase/DatabaseManager.h" 33 #include "modules/webdatabase/DatabaseManager.h"
34 #include "modules/webdatabase/SQLError.h" 34 #include "modules/webdatabase/SQLError.h"
35 #include "modules/webdatabase/SQLStatementBackend.h" 35 #include "modules/webdatabase/SQLStatementBackend.h"
36 #include "modules/webdatabase/SQLStatementCallback.h" 36 #include "modules/webdatabase/SQLStatementCallback.h"
37 #include "modules/webdatabase/SQLStatementErrorCallback.h" 37 #include "modules/webdatabase/SQLStatementErrorCallback.h"
38 #include "modules/webdatabase/SQLTransaction.h" 38 #include "modules/webdatabase/SQLTransaction.h"
39 #include "modules/webdatabase/sqlite/SQLiteDatabase.h" 39 #include "modules/webdatabase/sqlite/SQLiteDatabase.h"
40 #include "modules/webdatabase/sqlite/SQLiteStatement.h" 40 #include "modules/webdatabase/sqlite/SQLiteStatement.h"
41 #include "wtf/text/CString.h" 41 #include "platform/wtf/text/CString.h"
42 42
43 namespace blink { 43 namespace blink {
44 44
45 SQLStatement* SQLStatement::Create(Database* database, 45 SQLStatement* SQLStatement::Create(Database* database,
46 SQLStatementCallback* callback, 46 SQLStatementCallback* callback,
47 SQLStatementErrorCallback* error_callback) { 47 SQLStatementErrorCallback* error_callback) {
48 return new SQLStatement(database, callback, error_callback); 48 return new SQLStatement(database, callback, error_callback);
49 } 49 }
50 50
51 SQLStatement::SQLStatement(Database* database, 51 SQLStatement::SQLStatement(Database* database,
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 error_callback->handleEvent(transaction, SQLError::Create(*error)); 100 error_callback->handleEvent(transaction, SQLError::Create(*error));
101 } else if (callback) { 101 } else if (callback) {
102 callback_error = 102 callback_error =
103 !callback->handleEvent(transaction, backend_->SqlResultSet()); 103 !callback->handleEvent(transaction, backend_->SqlResultSet());
104 } 104 }
105 105
106 return callback_error; 106 return callback_error;
107 } 107 }
108 108
109 } // namespace blink 109 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698