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

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 21 matching lines...) Expand all
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" 35 #include "wtf/text/WTFString.h"
36 36
37 namespace blink { 37 namespace blink {
38 38
39 class ChangeVersionData; 39 class ChangeVersionData;
40 class DatabaseAuthorizer; 40 class DatabaseAuthorizer;
41 class DatabaseContext; 41 class DatabaseContext;
42 class DatabaseServer;
43 class ExecutionContext; 42 class ExecutionContext;
44 class SQLTransaction; 43 class SQLTransaction;
45 class SQLTransactionBackend; 44 class SQLTransactionBackend;
46 class SQLTransactionCallback; 45 class SQLTransactionCallback;
47 class SQLTransactionClient; 46 class SQLTransactionClient;
48 class SQLTransactionCoordinator; 47 class SQLTransactionCoordinator;
49 class SQLTransactionErrorCallback; 48 class SQLTransactionErrorCallback;
50 class VoidCallback; 49 class VoidCallback;
51 50
52 class Database final : public GarbageCollectedFinalized<Database>, public Script Wrappable { 51 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; 176 friend class ChangeVersionWrapper;
178 friend class DatabaseManager; 177 friend class DatabaseManager;
179 friend class SQLStatementBackend; 178 friend class SQLStatementBackend;
180 friend class SQLTransaction; 179 friend class SQLTransaction;
181 friend class SQLTransactionBackend; 180 friend class SQLTransactionBackend;
182 }; 181 };
183 182
184 } // namespace blink 183 } // namespace blink
185 184
186 #endif // Database_h 185 #endif // Database_h
OLDNEW
« no previous file with comments | « Source/modules/webdatabase/DOMWindowWebDatabase.h ('k') | Source/modules/webdatabase/DatabaseContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698