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

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

Issue 631133003: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/workers (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/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 21 matching lines...) Expand all
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; 39 class Node;
40 class ExecutionContext; 40 class ExecutionContext;
41 41
42 class WorkerEventQueue FINAL : public EventQueue { 42 class WorkerEventQueue final : public EventQueue {
43 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; 43 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
44 public: 44 public:
45 45
46 static PassOwnPtrWillBeRawPtr<WorkerEventQueue> create(ExecutionContext*); 46 static PassOwnPtrWillBeRawPtr<WorkerEventQueue> create(ExecutionContext*);
47 virtual ~WorkerEventQueue(); 47 virtual ~WorkerEventQueue();
48 void trace(Visitor*); 48 void trace(Visitor*);
49 49
50 // EventQueue 50 // EventQueue
51 virtual bool enqueueEvent(PassRefPtrWillBeRawPtr<Event>) OVERRIDE; 51 virtual bool enqueueEvent(PassRefPtrWillBeRawPtr<Event>) override;
52 virtual bool cancelEvent(Event*) OVERRIDE; 52 virtual bool cancelEvent(Event*) override;
53 virtual void close() OVERRIDE; 53 virtual void close() override;
54 54
55 private: 55 private:
56 explicit WorkerEventQueue(ExecutionContext*); 56 explicit WorkerEventQueue(ExecutionContext*);
57 void removeEvent(Event*); 57 void removeEvent(Event*);
58 58
59 RawPtrWillBeMember<ExecutionContext> m_executionContext; 59 RawPtrWillBeMember<ExecutionContext> m_executionContext;
60 bool m_isClosed; 60 bool m_isClosed;
61 61
62 class EventDispatcherTask; 62 class EventDispatcherTask;
63 typedef WillBeHeapHashMap<RefPtrWillBeMember<Event>, EventDispatcherTask*> E ventTaskMap; 63 typedef WillBeHeapHashMap<RefPtrWillBeMember<Event>, EventDispatcherTask*> E ventTaskMap;
64 EventTaskMap m_eventTaskMap; 64 EventTaskMap m_eventTaskMap;
65 }; 65 };
66 66
67 } 67 }
68 68
69 #endif // WorkerEventQueue_h 69 #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