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

Side by Side Diff: Source/core/testing/NullExecutionContext.h

Issue 941403002: Revert of Add task location information to ExecutionContext (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/page/NetworkStateNotifier.cpp ('k') | Source/core/testing/NullExecutionContext.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NullExecutionContext_h 5 #ifndef NullExecutionContext_h
6 #define NullExecutionContext_h 6 #define NullExecutionContext_h
7 7
8 #include "core/dom/ExecutionContext.h" 8 #include "core/dom/ExecutionContext.h"
9 #include "core/dom/SecurityContext.h" 9 #include "core/dom/SecurityContext.h"
10 #include "core/events/EventQueue.h" 10 #include "core/events/EventQueue.h"
11 #include "core/inspector/ConsoleMessage.h" 11 #include "core/inspector/ConsoleMessage.h"
12 #include "core/inspector/ScriptCallStack.h" 12 #include "core/inspector/ScriptCallStack.h"
13 #include "platform/heap/Handle.h" 13 #include "platform/heap/Handle.h"
14 #include "platform/weborigin/KURL.h" 14 #include "platform/weborigin/KURL.h"
15 #include "wtf/RefCounted.h" 15 #include "wtf/RefCounted.h"
16 16
17 namespace blink { 17 namespace blink {
18 18
19 class NullExecutionContext final : public RefCountedWillBeGarbageCollectedFinali zed<NullExecutionContext>, public SecurityContext, public ExecutionContext { 19 class NullExecutionContext final : public RefCountedWillBeGarbageCollectedFinali zed<NullExecutionContext>, public SecurityContext, public ExecutionContext {
20 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(NullExecutionContext); 20 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(NullExecutionContext);
21 public: 21 public:
22 NullExecutionContext(); 22 NullExecutionContext();
23 23
24 virtual void disableEval(const String&) override { } 24 virtual void disableEval(const String&) override { }
25 virtual String userAgent(const KURL&) const override { return String(); } 25 virtual String userAgent(const KURL&) const override { return String(); }
26 26
27 virtual void postTask(const WebTraceLocation&, PassOwnPtr<ExecutionContextTa sk>) override; 27 virtual void postTask(PassOwnPtr<ExecutionContextTask>) override;
28 28
29 virtual EventTarget* errorEventTarget() override { return nullptr; } 29 virtual EventTarget* errorEventTarget() override { return nullptr; }
30 virtual EventQueue* eventQueue() const override { return m_queue.get(); } 30 virtual EventQueue* eventQueue() const override { return m_queue.get(); }
31 31
32 virtual bool tasksNeedSuspension() override { return m_tasksNeedSuspension; } 32 virtual bool tasksNeedSuspension() override { return m_tasksNeedSuspension; }
33 void setTasksNeedSuspension(bool flag) { m_tasksNeedSuspension = flag; } 33 void setTasksNeedSuspension(bool flag) { m_tasksNeedSuspension = flag; }
34 34
35 virtual void reportBlockedScriptExecutionToInspector(const String& directive Text) override { } 35 virtual void reportBlockedScriptExecutionToInspector(const String& directive Text) override { }
36 virtual void didUpdateSecurityOrigin() override { } 36 virtual void didUpdateSecurityOrigin() override { }
37 virtual SecurityContext& securityContext() override { return *this; } 37 virtual SecurityContext& securityContext() override { return *this; }
(...skipping 25 matching lines...) Expand all
63 private: 63 private:
64 bool m_tasksNeedSuspension; 64 bool m_tasksNeedSuspension;
65 OwnPtrWillBeMember<EventQueue> m_queue; 65 OwnPtrWillBeMember<EventQueue> m_queue;
66 66
67 KURL m_dummyURL; 67 KURL m_dummyURL;
68 }; 68 };
69 69
70 } // namespace blink 70 } // namespace blink
71 71
72 #endif // NullExecutionContext_h 72 #endif // NullExecutionContext_h
OLDNEW
« no previous file with comments | « Source/core/page/NetworkStateNotifier.cpp ('k') | Source/core/testing/NullExecutionContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698