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

Side by Side Diff: content/test/layouttest_support.cc

Issue 2596283002: Include-what-you-use for ThreadTaskRunnerHandle. (Closed)
Patch Set: rebase Created 3 years, 12 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/public/test/layouttest_support.h" 5 #include "content/public/test/layouttest_support.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
11 #include "base/lazy_instance.h" 11 #include "base/lazy_instance.h"
12 #include "base/memory/ptr_util.h" 12 #include "base/memory/ptr_util.h"
13 #include "base/strings/string_util.h" 13 #include "base/strings/string_util.h"
14 #include "base/threading/thread_task_runner_handle.h"
14 #include "build/build_config.h" 15 #include "build/build_config.h"
15 #include "cc/output/copy_output_request.h" 16 #include "cc/output/copy_output_request.h"
16 #include "cc/test/pixel_test_output_surface.h" 17 #include "cc/test/pixel_test_output_surface.h"
17 #include "cc/test/test_compositor_frame_sink.h" 18 #include "cc/test/test_compositor_frame_sink.h"
18 #include "components/test_runner/test_common.h" 19 #include "components/test_runner/test_common.h"
19 #include "components/test_runner/web_frame_test_proxy.h" 20 #include "components/test_runner/web_frame_test_proxy.h"
20 #include "components/test_runner/web_view_test_proxy.h" 21 #include "components/test_runner/web_view_test_proxy.h"
21 #include "components/test_runner/web_widget_test_proxy.h" 22 #include "components/test_runner/web_widget_test_proxy.h"
22 #include "content/browser/bluetooth/bluetooth_device_chooser_controller.h" 23 #include "content/browser/bluetooth/bluetooth_device_chooser_controller.h"
23 #include "content/browser/renderer_host/render_process_host_impl.h" 24 #include "content/browser/renderer_host/render_process_host_impl.h"
(...skipping 1112 matching lines...) Expand 10 before | Expand all | Expand 10 after
1136 1137
1137 void ForceTextInputStateUpdateForRenderFrame(RenderFrame* frame) { 1138 void ForceTextInputStateUpdateForRenderFrame(RenderFrame* frame) {
1138 if (auto* render_widget = 1139 if (auto* render_widget =
1139 static_cast<RenderFrameImpl*>(frame)->GetRenderWidget()) { 1140 static_cast<RenderFrameImpl*>(frame)->GetRenderWidget()) {
1140 render_widget->UpdateTextInputState(ShowIme::IF_NEEDED, 1141 render_widget->UpdateTextInputState(ShowIme::IF_NEEDED,
1141 ChangeSource::FROM_NON_IME); 1142 ChangeSource::FROM_NON_IME);
1142 } 1143 }
1143 } 1144 }
1144 1145
1145 } // namespace content 1146 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/render_widget.cc ('k') | device/generic_sensor/platform_sensor_and_provider_unittest_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698