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

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

Issue 1967823004: Fix include path for moved thread_task_runner_handle.h header in content/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: Created 4 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
« no previous file with comments | « content/renderer/pepper/video_encoder_shim.cc ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 10 matching lines...) Expand all
21 #include "base/macros.h" 21 #include "base/macros.h"
22 #include "base/memory/ptr_util.h" 22 #include "base/memory/ptr_util.h"
23 #include "base/memory/shared_memory.h" 23 #include "base/memory/shared_memory.h"
24 #include "base/memory/weak_ptr.h" 24 #include "base/memory/weak_ptr.h"
25 #include "base/metrics/field_trial.h" 25 #include "base/metrics/field_trial.h"
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/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" 36 #include "components/scheduler/renderer/renderer_scheduler.h"
37 #include "content/child/appcache/appcache_dispatcher.h" 37 #include "content/child/appcache/appcache_dispatcher.h"
38 #include "content/child/permissions/permission_dispatcher.h" 38 #include "content/child/permissions/permission_dispatcher.h"
39 #include "content/child/quota_dispatcher.h" 39 #include "content/child/quota_dispatcher.h"
40 #include "content/child/request_extra_data.h" 40 #include "content/child/request_extra_data.h"
41 #include "content/child/service_worker/service_worker_handle_reference.h" 41 #include "content/child/service_worker/service_worker_handle_reference.h"
(...skipping 5978 matching lines...) Expand 10 before | Expand all | Expand 10 after
6020 int match_count, 6020 int match_count,
6021 int ordinal, 6021 int ordinal,
6022 const WebRect& selection_rect, 6022 const WebRect& selection_rect,
6023 bool final_status_update) { 6023 bool final_status_update) {
6024 Send(new FrameHostMsg_Find_Reply(routing_id_, request_id, match_count, 6024 Send(new FrameHostMsg_Find_Reply(routing_id_, request_id, match_count,
6025 selection_rect, ordinal, 6025 selection_rect, ordinal,
6026 final_status_update)); 6026 final_status_update));
6027 } 6027 }
6028 6028
6029 } // namespace content 6029 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/pepper/video_encoder_shim.cc ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698