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

Side by Side Diff: third_party/WebKit/Source/platform/scheduler/renderer/web_view_scheduler_impl.h

Issue 2843503002: scheduler: Move WebFrameScheduler and WebScheduler into Blink (Closed)
Patch Set: Build fix Created 3 years, 7 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 THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_WEB_VIEW_SCHEDULER _IMPL_H_ 5 #ifndef THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_WEB_VIEW_SCHEDULER _IMPL_H_
6 #define THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_WEB_VIEW_SCHEDULER _IMPL_H_ 6 #define THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_WEB_VIEW_SCHEDULER _IMPL_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
11 11
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "platform/scheduler/base/task_queue.h" 13 #include "platform/scheduler/base/task_queue.h"
14 #include "platform/scheduler/child/web_scheduler.h"
15 #include "platform/scheduler/child/web_task_runner_impl.h"
14 #include "platform/scheduler/renderer/task_queue_throttler.h" 16 #include "platform/scheduler/renderer/task_queue_throttler.h"
17 #include "platform/scheduler/renderer/web_view_scheduler.h"
15 #include "public/platform/WebCommon.h" 18 #include "public/platform/WebCommon.h"
16 #include "public/platform/WebScheduler.h"
17 #include "public/platform/WebViewScheduler.h"
18 19
19 namespace base { 20 namespace base {
20 namespace trace_event { 21 namespace trace_event {
21 class BlameContext; 22 class BlameContext;
22 class TracedValue; 23 class TracedValue;
23 } // namespace trace_event 24 } // namespace trace_event
24 } // namespace base 25 } // namespace base
25 26
26 namespace blink { 27 namespace blink {
27 namespace scheduler { 28 namespace scheduler {
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 CancelableClosureHolder delayed_background_throttling_enabler_; 117 CancelableClosureHolder delayed_background_throttling_enabler_;
117 WebViewScheduler::WebViewSchedulerSettings* settings_; // Not owned. 118 WebViewScheduler::WebViewSchedulerSettings* settings_; // Not owned.
118 119
119 DISALLOW_COPY_AND_ASSIGN(WebViewSchedulerImpl); 120 DISALLOW_COPY_AND_ASSIGN(WebViewSchedulerImpl);
120 }; 121 };
121 122
122 } // namespace scheduler 123 } // namespace scheduler
123 } // namespace blink 124 } // namespace blink
124 125
125 #endif // THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_WEB_VIEW_SCHEDU LER_IMPL_H_ 126 #endif // THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_WEB_VIEW_SCHEDU LER_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698