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

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

Issue 1441073006: Move throttling of background timers into the renderer scheduler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Last few changes Sami requested Created 5 years 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 // 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"
(...skipping 19 matching lines...) Expand all
30 EventQueue* eventQueue() const override { return m_queue.get(); } 30 EventQueue* eventQueue() const override { return m_queue.get(); }
31 31
32 bool tasksNeedSuspension() override { return m_tasksNeedSuspension; } 32 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 void reportBlockedScriptExecutionToInspector(const String& directiveText) ov erride { } 35 void reportBlockedScriptExecutionToInspector(const String& directiveText) ov erride { }
36 void didUpdateSecurityOrigin() override { } 36 void didUpdateSecurityOrigin() override { }
37 SecurityContext& securityContext() override { return *this; } 37 SecurityContext& securityContext() override { return *this; }
38 DOMTimerCoordinator* timers() override { return nullptr; } 38 DOMTimerCoordinator* timers() override { return nullptr; }
39 39
40 double timerAlignmentInterval() const;
41
42 void addConsoleMessage(PassRefPtrWillBeRawPtr<ConsoleMessage>) override { } 40 void addConsoleMessage(PassRefPtrWillBeRawPtr<ConsoleMessage>) override { }
43 void logExceptionToConsole(const String& errorMessage, int scriptId, const S tring& sourceURL, int lineNumber, int columnNumber, PassRefPtrWillBeRawPtr<Scrip tCallStack>) override { } 41 void logExceptionToConsole(const String& errorMessage, int scriptId, const S tring& sourceURL, int lineNumber, int columnNumber, PassRefPtrWillBeRawPtr<Scrip tCallStack>) override { }
44 42
45 bool isSecureContext(String& errorMessage, const SecureContextCheck = Standa rdSecureContextCheck) const override; 43 bool isSecureContext(String& errorMessage, const SecureContextCheck = Standa rdSecureContextCheck) const override;
46 44
47 DEFINE_INLINE_TRACE() 45 DEFINE_INLINE_TRACE()
48 { 46 {
49 visitor->trace(m_queue); 47 visitor->trace(m_queue);
50 SecurityContext::trace(visitor); 48 SecurityContext::trace(visitor);
51 ExecutionContext::trace(visitor); 49 ExecutionContext::trace(visitor);
(...skipping 14 matching lines...) Expand all
66 private: 64 private:
67 bool m_tasksNeedSuspension; 65 bool m_tasksNeedSuspension;
68 OwnPtrWillBeMember<EventQueue> m_queue; 66 OwnPtrWillBeMember<EventQueue> m_queue;
69 67
70 KURL m_dummyURL; 68 KURL m_dummyURL;
71 }; 69 };
72 70
73 } // namespace blink 71 } // namespace blink
74 72
75 #endif // NullExecutionContext_h 73 #endif // NullExecutionContext_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/page/Page.cpp ('k') | third_party/WebKit/Source/core/testing/NullExecutionContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698