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

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

Issue 651503002: Clean up forward declarations in Source/modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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) 2013 Apple Inc. All rights reserved. 2 * Copyright (C) 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 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 14 matching lines...) Expand all
25 25
26 #ifndef Database_h 26 #ifndef Database_h
27 #define Database_h 27 #define Database_h
28 28
29 #include "bindings/core/v8/ScriptWrappable.h" 29 #include "bindings/core/v8/ScriptWrappable.h"
30 #include "modules/webdatabase/DatabaseBasicTypes.h" 30 #include "modules/webdatabase/DatabaseBasicTypes.h"
31 #include "modules/webdatabase/DatabaseError.h" 31 #include "modules/webdatabase/DatabaseError.h"
32 #include "modules/webdatabase/sqlite/SQLiteDatabase.h" 32 #include "modules/webdatabase/sqlite/SQLiteDatabase.h"
33 #include "platform/weborigin/SecurityOrigin.h" 33 #include "platform/weborigin/SecurityOrigin.h"
34 #include "wtf/Deque.h" 34 #include "wtf/Deque.h"
35 #include "wtf/text/WTFString.h"
36 35
37 namespace blink { 36 namespace blink {
38 37
39 class ChangeVersionData; 38 class ChangeVersionData;
40 class DatabaseAuthorizer; 39 class DatabaseAuthorizer;
41 class DatabaseContext; 40 class DatabaseContext;
42 class DatabaseServer;
43 class ExecutionContext; 41 class ExecutionContext;
44 class SQLTransaction; 42 class SQLTransaction;
45 class SQLTransactionBackend; 43 class SQLTransactionBackend;
46 class SQLTransactionCallback; 44 class SQLTransactionCallback;
47 class SQLTransactionClient; 45 class SQLTransactionClient;
48 class SQLTransactionCoordinator; 46 class SQLTransactionCoordinator;
49 class SQLTransactionErrorCallback; 47 class SQLTransactionErrorCallback;
50 class VoidCallback; 48 class VoidCallback;
51 49
52 class Database final : public GarbageCollectedFinalized<Database>, public Script Wrappable { 50 class Database final : public GarbageCollectedFinalized<Database>, public Script Wrappable {
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 friend class ChangeVersionWrapper; 175 friend class ChangeVersionWrapper;
178 friend class DatabaseManager; 176 friend class DatabaseManager;
179 friend class SQLStatementBackend; 177 friend class SQLStatementBackend;
180 friend class SQLTransaction; 178 friend class SQLTransaction;
181 friend class SQLTransactionBackend; 179 friend class SQLTransactionBackend;
182 }; 180 };
183 181
184 } // namespace blink 182 } // namespace blink
185 183
186 #endif // Database_h 184 #endif // Database_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698