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

Side by Side Diff: Source/modules/webdatabase/DatabaseThread.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) 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2008 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 23 matching lines...) Expand all
34 #include "wtf/HashMap.h" 34 #include "wtf/HashMap.h"
35 #include "wtf/HashSet.h" 35 #include "wtf/HashSet.h"
36 #include "wtf/OwnPtr.h" 36 #include "wtf/OwnPtr.h"
37 #include "wtf/PassOwnPtr.h" 37 #include "wtf/PassOwnPtr.h"
38 #include "wtf/ThreadingPrimitives.h" 38 #include "wtf/ThreadingPrimitives.h"
39 39
40 namespace blink { 40 namespace blink {
41 41
42 class Database; 42 class Database;
43 class DatabaseTask; 43 class DatabaseTask;
44 class Document;
45 class MessageLoopInterruptor;
46 class PendingGCRunner;
47 class SQLTransactionClient; 44 class SQLTransactionClient;
48 class SQLTransactionCoordinator; 45 class SQLTransactionCoordinator;
49 class TaskSynchronizer; 46 class TaskSynchronizer;
50 47
51 class DatabaseThread : public GarbageCollectedFinalized<DatabaseThread> { 48 class DatabaseThread : public GarbageCollectedFinalized<DatabaseThread> {
52 public: 49 public:
53 static DatabaseThread* create() { return new DatabaseThread; } 50 static DatabaseThread* create() { return new DatabaseThread; }
54 ~DatabaseThread(); 51 ~DatabaseThread();
55 void trace(Visitor*); 52 void trace(Visitor*);
56 53
(...skipping 30 matching lines...) Expand all
87 Member<SQLTransactionCoordinator> m_transactionCoordinator; 84 Member<SQLTransactionCoordinator> m_transactionCoordinator;
88 TaskSynchronizer* m_cleanupSync; 85 TaskSynchronizer* m_cleanupSync;
89 86
90 mutable Mutex m_terminationRequestedMutex; 87 mutable Mutex m_terminationRequestedMutex;
91 bool m_terminationRequested; 88 bool m_terminationRequested;
92 }; 89 };
93 90
94 } // namespace blink 91 } // namespace blink
95 92
96 #endif // DatabaseThread_h 93 #endif // DatabaseThread_h
OLDNEW
« no previous file with comments | « Source/modules/webdatabase/DatabaseContext.h ('k') | Source/modules/webdatabase/DatabaseTracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698