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

Side by Side Diff: content/renderer/render_frame_impl.cc

Issue 2118903002: scheduler: Move the Blink scheduler into Blink (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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include "content/renderer/render_frame_impl.h" 5 #include "content/renderer/render_frame_impl.h"
6 6
7 #include <map> 7 #include <map>
8 #include <string> 8 #include <string>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 15 matching lines...) Expand all
26 #include "base/metrics/histogram.h" 26 #include "base/metrics/histogram.h"
27 #include "base/process/process.h" 27 #include "base/process/process.h"
28 #include "base/stl_util.h" 28 #include "base/stl_util.h"
29 #include "base/strings/string16.h" 29 #include "base/strings/string16.h"
30 #include "base/strings/utf_string_conversions.h" 30 #include "base/strings/utf_string_conversions.h"
31 #include "base/threading/thread_task_runner_handle.h" 31 #include "base/threading/thread_task_runner_handle.h"
32 #include "base/time/time.h" 32 #include "base/time/time.h"
33 #include "base/trace_event/trace_event_argument.h" 33 #include "base/trace_event/trace_event_argument.h"
34 #include "build/build_config.h" 34 #include "build/build_config.h"
35 #include "cc/base/switches.h" 35 #include "cc/base/switches.h"
36 #include "components/scheduler/renderer/renderer_scheduler.h"
37 #include "content/child/appcache/appcache_dispatcher.h" 36 #include "content/child/appcache/appcache_dispatcher.h"
38 #include "content/child/quota_dispatcher.h" 37 #include "content/child/quota_dispatcher.h"
39 #include "content/child/request_extra_data.h" 38 #include "content/child/request_extra_data.h"
40 #include "content/child/service_worker/service_worker_handle_reference.h" 39 #include "content/child/service_worker/service_worker_handle_reference.h"
41 #include "content/child/service_worker/service_worker_network_provider.h" 40 #include "content/child/service_worker/service_worker_network_provider.h"
42 #include "content/child/service_worker/service_worker_provider_context.h" 41 #include "content/child/service_worker/service_worker_provider_context.h"
43 #include "content/child/service_worker/web_service_worker_provider_impl.h" 42 #include "content/child/service_worker/web_service_worker_provider_impl.h"
44 #include "content/child/v8_value_converter_impl.h" 43 #include "content/child/v8_value_converter_impl.h"
45 #include "content/child/web_url_loader_impl.h" 44 #include "content/child/web_url_loader_impl.h"
46 #include "content/child/web_url_request_util.h" 45 #include "content/child/web_url_request_util.h"
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 #include "third_party/WebKit/public/platform/WebMediaPlayer.h" 162 #include "third_party/WebKit/public/platform/WebMediaPlayer.h"
164 #include "third_party/WebKit/public/platform/WebMediaPlayerSource.h" 163 #include "third_party/WebKit/public/platform/WebMediaPlayerSource.h"
165 #include "third_party/WebKit/public/platform/WebPoint.h" 164 #include "third_party/WebKit/public/platform/WebPoint.h"
166 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" 165 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h"
167 #include "third_party/WebKit/public/platform/WebStorageQuotaCallbacks.h" 166 #include "third_party/WebKit/public/platform/WebStorageQuotaCallbacks.h"
168 #include "third_party/WebKit/public/platform/WebString.h" 167 #include "third_party/WebKit/public/platform/WebString.h"
169 #include "third_party/WebKit/public/platform/WebURL.h" 168 #include "third_party/WebKit/public/platform/WebURL.h"
170 #include "third_party/WebKit/public/platform/WebURLError.h" 169 #include "third_party/WebKit/public/platform/WebURLError.h"
171 #include "third_party/WebKit/public/platform/WebURLResponse.h" 170 #include "third_party/WebKit/public/platform/WebURLResponse.h"
172 #include "third_party/WebKit/public/platform/WebVector.h" 171 #include "third_party/WebKit/public/platform/WebVector.h"
172 #include "third_party/WebKit/public/platform/scheduler/renderer/renderer_schedul er.h"
173 #include "third_party/WebKit/public/web/WebColorSuggestion.h" 173 #include "third_party/WebKit/public/web/WebColorSuggestion.h"
174 #include "third_party/WebKit/public/web/WebConsoleMessage.h" 174 #include "third_party/WebKit/public/web/WebConsoleMessage.h"
175 #include "third_party/WebKit/public/web/WebDocument.h" 175 #include "third_party/WebKit/public/web/WebDocument.h"
176 #include "third_party/WebKit/public/web/WebFindOptions.h" 176 #include "third_party/WebKit/public/web/WebFindOptions.h"
177 #include "third_party/WebKit/public/web/WebFrameOwnerProperties.h" 177 #include "third_party/WebKit/public/web/WebFrameOwnerProperties.h"
178 #include "third_party/WebKit/public/web/WebFrameSerializer.h" 178 #include "third_party/WebKit/public/web/WebFrameSerializer.h"
179 #include "third_party/WebKit/public/web/WebFrameSerializerCacheControlPolicy.h" 179 #include "third_party/WebKit/public/web/WebFrameSerializerCacheControlPolicy.h"
180 #include "third_party/WebKit/public/web/WebFrameWidget.h" 180 #include "third_party/WebKit/public/web/WebFrameWidget.h"
181 #include "third_party/WebKit/public/web/WebKit.h" 181 #include "third_party/WebKit/public/web/WebKit.h"
182 #include "third_party/WebKit/public/web/WebLocalFrame.h" 182 #include "third_party/WebKit/public/web/WebLocalFrame.h"
(...skipping 6112 matching lines...) Expand 10 before | Expand all | Expand 10 after
6295 // event target. Potentially a Pepper plugin will receive the event. 6295 // event target. Potentially a Pepper plugin will receive the event.
6296 // In order to tell whether a plugin gets the last mouse event and which it 6296 // In order to tell whether a plugin gets the last mouse event and which it
6297 // is, we set |pepper_last_mouse_event_target_| to null here. If a plugin gets 6297 // is, we set |pepper_last_mouse_event_target_| to null here. If a plugin gets
6298 // the event, it will notify us via DidReceiveMouseEvent() and set itself as 6298 // the event, it will notify us via DidReceiveMouseEvent() and set itself as
6299 // |pepper_last_mouse_event_target_|. 6299 // |pepper_last_mouse_event_target_|.
6300 pepper_last_mouse_event_target_ = nullptr; 6300 pepper_last_mouse_event_target_ = nullptr;
6301 #endif 6301 #endif
6302 } 6302 }
6303 6303
6304 } // namespace content 6304 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/mus/compositor_mus_connection_unittest.cc ('k') | content/renderer/render_thread_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698