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

Side by Side Diff: components/scheduler/renderer/web_frame_scheduler_impl.h

Issue 2184123002: Change VirtualTimePolicy::PAUSE_IF_NETWORK_FETCHES_PENDING (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 4 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 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 COMPONENTS_SCHEDULER_RENDERER_WEB_FRAME_SCHEDULER_IMPL_H_ 5 #ifndef COMPONENTS_SCHEDULER_RENDERER_WEB_FRAME_SCHEDULER_IMPL_H_
6 #define COMPONENTS_SCHEDULER_RENDERER_WEB_FRAME_SCHEDULER_IMPL_H_ 6 #define COMPONENTS_SCHEDULER_RENDERER_WEB_FRAME_SCHEDULER_IMPL_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 30 matching lines...) Expand all
41 void setFrameVisible(bool frame_visible) override; 41 void setFrameVisible(bool frame_visible) override;
42 void setPageVisible(bool page_visible) override; 42 void setPageVisible(bool page_visible) override;
43 blink::WebTaskRunner* loadingTaskRunner() override; 43 blink::WebTaskRunner* loadingTaskRunner() override;
44 blink::WebTaskRunner* timerTaskRunner() override; 44 blink::WebTaskRunner* timerTaskRunner() override;
45 blink::WebTaskRunner* unthrottledTaskRunner() override; 45 blink::WebTaskRunner* unthrottledTaskRunner() override;
46 blink::WebViewScheduler* webViewScheduler() override; 46 blink::WebViewScheduler* webViewScheduler() override;
47 void didStartLoading(unsigned long identifier) override; 47 void didStartLoading(unsigned long identifier) override;
48 void didStopLoading(unsigned long identifier) override; 48 void didStopLoading(unsigned long identifier) override;
49 void setDocumentParsingInBackground(bool background_parser_active) override; 49 void setDocumentParsingInBackground(bool background_parser_active) override;
50 50
51 void OnVirtualTimeDomainChanged();
52
53 private: 51 private:
54 friend class WebViewSchedulerImpl; 52 friend class WebViewSchedulerImpl;
55 53
56 void DetachFromWebViewScheduler(); 54 void DetachFromWebViewScheduler();
57 void ApplyPolicyToTimerQueue(); 55 void ApplyPolicyToTimerQueue();
58 56
59 scoped_refptr<TaskQueue> loading_task_queue_; 57 scoped_refptr<TaskQueue> loading_task_queue_;
60 scoped_refptr<TaskQueue> timer_task_queue_; 58 scoped_refptr<TaskQueue> timer_task_queue_;
61 scoped_refptr<TaskQueue> unthrottled_task_queue_; 59 scoped_refptr<TaskQueue> unthrottled_task_queue_;
62 std::unique_ptr<WebTaskRunnerImpl> loading_web_task_runner_; 60 std::unique_ptr<WebTaskRunnerImpl> loading_web_task_runner_;
63 std::unique_ptr<WebTaskRunnerImpl> timer_web_task_runner_; 61 std::unique_ptr<WebTaskRunnerImpl> timer_web_task_runner_;
64 std::unique_ptr<WebTaskRunnerImpl> unthrottled_web_task_runner_; 62 std::unique_ptr<WebTaskRunnerImpl> unthrottled_web_task_runner_;
65 RendererSchedulerImpl* renderer_scheduler_; // NOT OWNED 63 RendererSchedulerImpl* renderer_scheduler_; // NOT OWNED
66 WebViewSchedulerImpl* parent_web_view_scheduler_; // NOT OWNED 64 WebViewSchedulerImpl* parent_web_view_scheduler_; // NOT OWNED
67 base::trace_event::BlameContext* blame_context_; // NOT OWNED 65 base::trace_event::BlameContext* blame_context_; // NOT OWNED
68 TaskQueue::PumpPolicy virtual_time_pump_policy_; 66 TaskQueue::PumpPolicy virtual_time_pump_policy_;
69 bool frame_visible_; 67 bool frame_visible_;
70 bool page_visible_; 68 bool page_visible_;
71 69
72 DISALLOW_COPY_AND_ASSIGN(WebFrameSchedulerImpl); 70 DISALLOW_COPY_AND_ASSIGN(WebFrameSchedulerImpl);
73 }; 71 };
74 72
75 } // namespace scheduler 73 } // namespace scheduler
76 74
77 #endif // COMPONENTS_SCHEDULER_RENDERER_WEB_FRAME_SCHEDULER_IMPL_H_ 75 #endif // COMPONENTS_SCHEDULER_RENDERER_WEB_FRAME_SCHEDULER_IMPL_H_
OLDNEW
« no previous file with comments | « components/scheduler/renderer/throttling_helper_unittest.cc ('k') | components/scheduler/renderer/web_frame_scheduler_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698