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

Side by Side Diff: Source/core/workers/WorkerEventQueue.h

Issue 732803003: Clean up forward declarations in Source/core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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/core/workers/WorkerConsole.h ('k') | Source/core/workers/WorkerGlobalScope.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) 2010 Google Inc. All Rights Reserved. 2 * Copyright (C) 2010 Google 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 18 matching lines...) Expand all
29 29
30 #include "core/events/EventQueue.h" 30 #include "core/events/EventQueue.h"
31 #include "wtf/HashMap.h" 31 #include "wtf/HashMap.h"
32 #include "wtf/HashSet.h" 32 #include "wtf/HashSet.h"
33 #include "wtf/PassOwnPtr.h" 33 #include "wtf/PassOwnPtr.h"
34 #include "wtf/RefCounted.h" 34 #include "wtf/RefCounted.h"
35 35
36 namespace blink { 36 namespace blink {
37 37
38 class Event; 38 class Event;
39 class Node;
40 class ExecutionContext; 39 class ExecutionContext;
41 40
42 class WorkerEventQueue final : public EventQueue { 41 class WorkerEventQueue final : public EventQueue {
43 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; 42 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
44 public: 43 public:
45 44
46 static PassOwnPtrWillBeRawPtr<WorkerEventQueue> create(ExecutionContext*); 45 static PassOwnPtrWillBeRawPtr<WorkerEventQueue> create(ExecutionContext*);
47 virtual ~WorkerEventQueue(); 46 virtual ~WorkerEventQueue();
48 void trace(Visitor*); 47 void trace(Visitor*);
49 48
(...skipping 10 matching lines...) Expand all
60 bool m_isClosed; 59 bool m_isClosed;
61 60
62 class EventDispatcherTask; 61 class EventDispatcherTask;
63 using EventTaskMap = WillBeHeapHashMap<RefPtrWillBeMember<Event>, EventDispa tcherTask*>; 62 using EventTaskMap = WillBeHeapHashMap<RefPtrWillBeMember<Event>, EventDispa tcherTask*>;
64 EventTaskMap m_eventTaskMap; 63 EventTaskMap m_eventTaskMap;
65 }; 64 };
66 65
67 } 66 }
68 67
69 #endif // WorkerEventQueue_h 68 #endif // WorkerEventQueue_h
OLDNEW
« no previous file with comments | « Source/core/workers/WorkerConsole.h ('k') | Source/core/workers/WorkerGlobalScope.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698