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

Side by Side Diff: Source/modules/webdatabase/DatabaseContext.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
« no previous file with comments | « Source/modules/webdatabase/Database.h ('k') | Source/modules/webdatabase/DatabaseThread.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
3 * Copyright (C) 2011 Google, Inc. All Rights Reserved. 3 * Copyright (C) 2011 Google, Inc. All Rights Reserved.
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
26 */ 26 */
27 27
28 #ifndef DatabaseContext_h 28 #ifndef DatabaseContext_h
29 #define DatabaseContext_h 29 #define DatabaseContext_h
30 30
31 #include "core/dom/ActiveDOMObject.h" 31 #include "core/dom/ActiveDOMObject.h"
32 #include "platform/heap/Handle.h" 32 #include "platform/heap/Handle.h"
33 33
34 namespace blink { 34 namespace blink {
35 35
36 class Database;
37 class DatabaseContext; 36 class DatabaseContext;
38 class TaskSynchronizer; 37 class TaskSynchronizer;
39 class DatabaseThread; 38 class DatabaseThread;
40 class ExecutionContext; 39 class ExecutionContext;
41 class SecurityOrigin; 40 class SecurityOrigin;
42 41
43 class DatabaseContext final 42 class DatabaseContext final
44 : public GarbageCollectedFinalized<DatabaseContext> 43 : public GarbageCollectedFinalized<DatabaseContext>
45 , public ActiveDOMObject { 44 , public ActiveDOMObject {
46 public: 45 public:
(...skipping 25 matching lines...) Expand all
72 explicit DatabaseContext(ExecutionContext*); 71 explicit DatabaseContext(ExecutionContext*);
73 72
74 Member<DatabaseThread> m_databaseThread; 73 Member<DatabaseThread> m_databaseThread;
75 bool m_hasOpenDatabases; // This never changes back to false, even after the database thread is closed. 74 bool m_hasOpenDatabases; // This never changes back to false, even after the database thread is closed.
76 bool m_hasRequestedTermination; 75 bool m_hasRequestedTermination;
77 }; 76 };
78 77
79 } // namespace blink 78 } // namespace blink
80 79
81 #endif // DatabaseContext_h 80 #endif // DatabaseContext_h
OLDNEW
« no previous file with comments | « Source/modules/webdatabase/Database.h ('k') | Source/modules/webdatabase/DatabaseThread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698