OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/test/content_browser_test_utils_internal.h" | 5 #include "content/test/content_browser_test_utils_internal.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 #include <map> | 10 #include <map> |
11 #include <set> | 11 #include <set> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "base/strings/stringprintf.h" | 14 #include "base/strings/stringprintf.h" |
15 #include "base/test/test_timeouts.h" | 15 #include "base/test/test_timeouts.h" |
16 #include "base/threading/thread_task_runner_handle.h" | 16 #include "base/threading/thread_task_runner_handle.h" |
17 #include "cc/surfaces/surface.h" | 17 #include "cc/surfaces/surface.h" |
18 #include "cc/surfaces/surface_manager.h" | 18 #include "cc/surfaces/surface_manager.h" |
19 #include "content/browser/compositor/surface_utils.h" | 19 #include "content/browser/compositor/surface_utils.h" |
20 #include "content/browser/frame_host/cross_process_frame_connector.h" | 20 #include "content/browser/frame_host/cross_process_frame_connector.h" |
21 #include "content/browser/frame_host/frame_tree_node.h" | 21 #include "content/browser/frame_host/frame_tree_node.h" |
22 #include "content/browser/frame_host/navigator.h" | 22 #include "content/browser/frame_host/navigator.h" |
23 #include "content/browser/frame_host/render_frame_proxy_host.h" | 23 #include "content/browser/frame_host/render_frame_proxy_host.h" |
24 #include "content/browser/frame_host/render_widget_host_view_child_frame.h" | 24 #include "content/browser/frame_host/render_widget_host_view_child_frame.h" |
25 #include "content/browser/renderer_host/delegated_frame_host.h" | 25 #include "content/browser/renderer_host/delegated_frame_host.h" |
26 #include "content/browser/renderer_host/render_widget_host_view_base.h" | 26 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
| 27 #include "content/public/browser/render_frame_host.h" |
27 #include "content/public/browser/resource_dispatcher_host.h" | 28 #include "content/public/browser/resource_dispatcher_host.h" |
28 #include "content/public/browser/resource_throttle.h" | 29 #include "content/public/browser/resource_throttle.h" |
29 #include "content/public/browser/web_contents.h" | 30 #include "content/public/browser/web_contents.h" |
| 31 #include "content/public/common/file_chooser_file_info.h" |
| 32 #include "content/public/common/file_chooser_params.h" |
30 #include "content/public/test/browser_test_utils.h" | 33 #include "content/public/test/browser_test_utils.h" |
31 #include "content/public/test/content_browser_test_utils.h" | 34 #include "content/public/test/content_browser_test_utils.h" |
32 #include "content/shell/browser/shell.h" | 35 #include "content/shell/browser/shell.h" |
33 #include "content/shell/browser/shell_javascript_dialog_manager.h" | 36 #include "content/shell/browser/shell_javascript_dialog_manager.h" |
34 #include "content/test/test_frame_navigation_observer.h" | 37 #include "content/test/test_frame_navigation_observer.h" |
35 #include "net/url_request/url_request.h" | 38 #include "net/url_request/url_request.h" |
36 | 39 |
37 namespace content { | 40 namespace content { |
38 | 41 |
39 namespace { | 42 namespace { |
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
417 if (loop_runner_) | 420 if (loop_runner_) |
418 loop_runner_->Quit(); | 421 loop_runner_->Quit(); |
419 } | 422 } |
420 | 423 |
421 void TestNavigationManager::OnWillStartRequest() { | 424 void TestNavigationManager::OnWillStartRequest() { |
422 navigation_paused_ = true; | 425 navigation_paused_ = true; |
423 if (loop_runner_) | 426 if (loop_runner_) |
424 loop_runner_->Quit(); | 427 loop_runner_->Quit(); |
425 } | 428 } |
426 | 429 |
| 430 FileChooserDelegate::FileChooserDelegate(const base::FilePath& file) |
| 431 : file_(file), file_chosen_(false) {} |
| 432 |
| 433 void FileChooserDelegate::RunFileChooser(RenderFrameHost* render_frame_host, |
| 434 const FileChooserParams& params) { |
| 435 // Send the selected file to the renderer process. |
| 436 FileChooserFileInfo file_info; |
| 437 file_info.file_path = file_; |
| 438 std::vector<FileChooserFileInfo> files; |
| 439 files.push_back(file_info); |
| 440 render_frame_host->FilesSelectedInChooser(files, FileChooserParams::Open); |
| 441 |
| 442 file_chosen_ = true; |
| 443 } |
| 444 |
427 } // namespace content | 445 } // namespace content |
OLD | NEW |