| OLD | NEW |
| 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 "public/platform/scheduler/base/task_queue.h" | 13 #include "platform/scheduler/renderer/task_queue_throttler.h" |
| 14 #include "public/platform/WebCommon.h" | 14 #include "public/platform/WebCommon.h" |
| 15 #include "public/platform/WebScheduler.h" | 15 #include "public/platform/WebScheduler.h" |
| 16 #include "public/platform/WebViewScheduler.h" | 16 #include "public/platform/WebViewScheduler.h" |
| 17 #include "platform/scheduler/renderer/task_queue_throttler.h" | 17 #include "public/platform/scheduler/base/task_queue.h" |
| 18 | 18 |
| 19 namespace base { | 19 namespace base { |
| 20 namespace trace_event { | 20 namespace trace_event { |
| 21 class BlameContext; | 21 class BlameContext; |
| 22 class TracedValue; | 22 class TracedValue; |
| 23 } // namespace trace_event | 23 } // namespace trace_event |
| 24 } // namespace base | 24 } // namespace base |
| 25 | 25 |
| 26 namespace blink { | 26 namespace blink { |
| 27 namespace scheduler { | 27 namespace scheduler { |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 CancelableClosureHolder delayed_background_throttling_enabler_; | 113 CancelableClosureHolder delayed_background_throttling_enabler_; |
| 114 WebViewScheduler::WebViewSchedulerSettings* settings_; // Not owned. | 114 WebViewScheduler::WebViewSchedulerSettings* settings_; // Not owned. |
| 115 | 115 |
| 116 DISALLOW_COPY_AND_ASSIGN(WebViewSchedulerImpl); | 116 DISALLOW_COPY_AND_ASSIGN(WebViewSchedulerImpl); |
| 117 }; | 117 }; |
| 118 | 118 |
| 119 } // namespace scheduler | 119 } // namespace scheduler |
| 120 } // namespace blink | 120 } // namespace blink |
| 121 | 121 |
| 122 #endif // THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_WEB_VIEW_SCHEDU
LER_IMPL_H_ | 122 #endif // THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_WEB_VIEW_SCHEDU
LER_IMPL_H_ |
| OLD | NEW |