Plumb through useUnfortunateSynchronousResizeMode.
[chromium-blink-merge.git] / content / test / content_browser_test_utils.cc
blob083f4045ee39a6b94b96f6385b9679381cdb3b25
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
3 // found in the LICENSE file.
5 #include "content/test/content_browser_test_utils.h"
7 #include "base/bind.h"
8 #include "base/files/file_path.h"
9 #include "base/path_service.h"
10 #include "base/run_loop.h"
11 #include "content/public/browser/navigation_controller.h"
12 #include "content/public/browser/notification_source.h"
13 #include "content/public/browser/web_contents.h"
14 #include "content/public/common/content_paths.h"
15 #include "content/public/test/browser_test_utils.h"
16 #include "content/public/test/test_navigation_observer.h"
17 #include "content/public/test/test_utils.h"
18 #include "content/shell/browser/shell.h"
19 #include "content/shell/browser/shell_javascript_dialog_manager.h"
20 #include "net/base/net_util.h"
22 namespace content {
24 base::FilePath GetTestFilePath(const char* dir, const char* file) {
25 base::FilePath path;
26 PathService::Get(DIR_TEST_DATA, &path);
27 return path.Append(base::FilePath().AppendASCII(dir).Append(
28 base::FilePath().AppendASCII(file)));
31 GURL GetTestUrl(const char* dir, const char* file) {
32 return net::FilePathToFileURL(GetTestFilePath(dir, file));
35 void NavigateToURLBlockUntilNavigationsComplete(Shell* window,
36 const GURL& url,
37 int number_of_navigations) {
38 WaitForLoadStop(window->web_contents());
39 TestNavigationObserver same_tab_observer(window->web_contents(),
40 number_of_navigations);
42 window->LoadURL(url);
43 same_tab_observer.Wait();
46 void NavigateToURL(Shell* window, const GURL& url) {
47 NavigateToURLBlockUntilNavigationsComplete(window, url, 1);
50 void WaitForAppModalDialog(Shell* window) {
51 ShellJavaScriptDialogManager* dialog_manager=
52 static_cast<ShellJavaScriptDialogManager*>(
53 window->GetJavaScriptDialogManager());
55 scoped_refptr<MessageLoopRunner> runner = new MessageLoopRunner();
56 dialog_manager->set_dialog_request_callback(runner->QuitClosure());
57 runner->Run();
60 ShellAddedObserver::ShellAddedObserver()
61 : shell_(NULL) {
62 Shell::SetShellCreatedCallback(
63 base::Bind(&ShellAddedObserver::ShellCreated, base::Unretained(this)));
66 ShellAddedObserver::~ShellAddedObserver() {
69 Shell* ShellAddedObserver::GetShell() {
70 if (shell_)
71 return shell_;
73 runner_ = new MessageLoopRunner();
74 runner_->Run();
75 return shell_;
78 void ShellAddedObserver::ShellCreated(Shell* shell) {
79 DCHECK(!shell_);
80 shell_ = shell;
81 if (runner_.get())
82 runner_->QuitClosure().Run();
85 } // namespace content