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

Side by Side Diff: components/web_view/test_runner/test_runner_application_delegate.cc

Issue 1549993003: Switch to standard integer types in components/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 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 #include "components/web_view/test_runner/test_runner_application_delegate.h" 5 #include "components/web_view/test_runner/test_runner_application_delegate.h"
6 6
7 #include <iostream> 7 #include <iostream>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
11 #include "base/files/file_path.h" 11 #include "base/files/file_path.h"
12 #include "base/files/file_util.h" 12 #include "base/files/file_util.h"
13 #include "base/files/scoped_temp_dir.h" 13 #include "base/files/scoped_temp_dir.h"
14 #include "base/location.h" 14 #include "base/location.h"
15 #include "base/path_service.h" 15 #include "base/path_service.h"
16 #include "base/thread_task_runner_handle.h" 16 #include "base/thread_task_runner_handle.h"
17 #include "base/threading/thread_restrictions.h" 17 #include "base/threading/thread_restrictions.h"
18 #include "build/build_config.h"
18 #include "components/mus/public/cpp/scoped_window_ptr.h" 19 #include "components/mus/public/cpp/scoped_window_ptr.h"
19 #include "components/mus/public/cpp/window.h" 20 #include "components/mus/public/cpp/window.h"
20 #include "components/mus/public/cpp/window_tree_connection.h" 21 #include "components/mus/public/cpp/window_tree_connection.h"
21 #include "components/mus/public/cpp/window_tree_host_factory.h" 22 #include "components/mus/public/cpp/window_tree_host_factory.h"
22 #include "components/test_runner/blink_test_platform_support.h" 23 #include "components/test_runner/blink_test_platform_support.h"
23 #include "mojo/application/public/cpp/application_connection.h" 24 #include "mojo/application/public/cpp/application_connection.h"
24 #include "mojo/application/public/cpp/application_impl.h" 25 #include "mojo/application/public/cpp/application_impl.h"
25 #include "mojo/converters/geometry/geometry_type_converters.h" 26 #include "mojo/converters/geometry/geometry_type_converters.h"
26 #include "mojo/services/network/public/interfaces/url_loader.mojom.h" 27 #include "mojo/services/network/public/interfaces/url_loader.mojom.h"
27 #include "ui/gfx/geometry/rect.h" 28 #include "ui/gfx/geometry/rect.h"
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 //////////////////////////////////////////////////////////////////////////////// 155 ////////////////////////////////////////////////////////////////////////////////
155 // mojo::InterfaceFactory<LayoutTestRunner> implementation: 156 // mojo::InterfaceFactory<LayoutTestRunner> implementation:
156 157
157 void TestRunnerApplicationDelegate::Create( 158 void TestRunnerApplicationDelegate::Create(
158 mojo::ApplicationConnection* connection, 159 mojo::ApplicationConnection* connection,
159 mojo::InterfaceRequest<web_view::LayoutTestRunner> request) { 160 mojo::InterfaceRequest<web_view::LayoutTestRunner> request) {
160 layout_test_runner_.AddBinding(this, request.Pass()); 161 layout_test_runner_.AddBinding(this, request.Pass());
161 } 162 }
162 163
163 } // namespace web_view 164 } // namespace web_view
OLDNEW
« no previous file with comments | « components/web_view/test_runner/test_runner_application_delegate.h ('k') | components/web_view/url_request_cloneable.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698