OLD | NEW |
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 "apps/shell_window.h" | 5 #include "apps/shell_window.h" |
6 #include "apps/shell_window_registry.h" | 6 #include "apps/shell_window_registry.h" |
7 #include "base/strings/stringprintf.h" | 7 #include "base/strings/stringprintf.h" |
8 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
9 #include "chrome/browser/apps/app_browsertest_util.h" | 9 #include "chrome/browser/apps/app_browsertest_util.h" |
10 #include "chrome/browser/extensions/extension_test_message_listener.h" | 10 #include "chrome/browser/extensions/extension_test_message_listener.h" |
| 11 #include "chrome/browser/profiles/profile.h" |
11 #include "chrome/test/base/interactive_test_utils.h" | 12 #include "chrome/test/base/interactive_test_utils.h" |
12 #include "chrome/test/base/test_launcher_utils.h" | 13 #include "chrome/test/base/test_launcher_utils.h" |
13 #include "chrome/test/base/ui_test_utils.h" | 14 #include "chrome/test/base/ui_test_utils.h" |
14 #include "content/public/browser/notification_service.h" | 15 #include "content/public/browser/notification_service.h" |
15 #include "content/public/browser/render_process_host.h" | 16 #include "content/public/browser/render_process_host.h" |
16 #include "content/public/browser/render_view_host.h" | 17 #include "content/public/browser/render_view_host.h" |
17 #include "content/public/browser/render_widget_host_view.h" | 18 #include "content/public/browser/render_widget_host_view.h" |
18 #include "content/public/browser/web_contents.h" | 19 #include "content/public/browser/web_contents.h" |
19 #include "content/public/browser/web_contents_view.h" | 20 #include "content/public/browser/web_contents_view.h" |
20 #include "content/public/common/content_switches.h" | 21 #include "content/public/common/content_switches.h" |
(...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
681 ASSERT_TRUE(done_listener.WaitUntilSatisfied()); | 682 ASSERT_TRUE(done_listener.WaitUntilSatisfied()); |
682 } | 683 } |
683 | 684 |
684 IN_PROC_BROWSER_TEST_F(WebViewInteractiveTest, | 685 IN_PROC_BROWSER_TEST_F(WebViewInteractiveTest, |
685 PointerLock_PointerLockLostWithFocus) { | 686 PointerLock_PointerLockLostWithFocus) { |
686 TestHelper("testPointerLockLostWithFocus", | 687 TestHelper("testPointerLockLostWithFocus", |
687 "DonePointerLockTest.PASSED", | 688 "DonePointerLockTest.PASSED", |
688 "DonePointerLockTest.FAILED", | 689 "DonePointerLockTest.FAILED", |
689 "web_view/pointerlock"); | 690 "web_view/pointerlock"); |
690 } | 691 } |
OLD | NEW |