| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 "base/stringprintf.h" | 5 #include "base/strings/stringprintf.h" |
| 6 #include "base/strings/utf_string_conversions.h" | 6 #include "base/strings/utf_string_conversions.h" |
| 7 #include "chrome/browser/extensions/extension_test_message_listener.h" | 7 #include "chrome/browser/extensions/extension_test_message_listener.h" |
| 8 #include "chrome/browser/extensions/platform_app_browsertest_util.h" | 8 #include "chrome/browser/extensions/platform_app_browsertest_util.h" |
| 9 #include "chrome/browser/extensions/shell_window_registry.h" | 9 #include "chrome/browser/extensions/shell_window_registry.h" |
| 10 #include "chrome/browser/ui/extensions/shell_window.h" | 10 #include "chrome/browser/ui/extensions/shell_window.h" |
| 11 #include "chrome/test/base/interactive_test_utils.h" | 11 #include "chrome/test/base/interactive_test_utils.h" |
| 12 #include "chrome/test/base/test_launcher_utils.h" | 12 #include "chrome/test/base/test_launcher_utils.h" |
| 13 #include "chrome/test/base/ui_test_utils.h" | 13 #include "chrome/test/base/ui_test_utils.h" |
| 14 #include "content/public/browser/notification_service.h" | 14 #include "content/public/browser/notification_service.h" |
| 15 #include "content/public/browser/render_process_host.h" | 15 #include "content/public/browser/render_process_host.h" |
| (...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 // Started flakily failing after a Blink roll: http://crbug.com/245332 | 460 // Started flakily failing after a Blink roll: http://crbug.com/245332 |
| 461 IN_PROC_BROWSER_TEST_F(WebViewInteractiveTest, DISABLED_PopupPositioningMoved) { | 461 IN_PROC_BROWSER_TEST_F(WebViewInteractiveTest, DISABLED_PopupPositioningMoved) { |
| 462 SetupTest( | 462 SetupTest( |
| 463 "web_view/popup_positioning_moved", | 463 "web_view/popup_positioning_moved", |
| 464 "files/extensions/platform_apps/web_view/popup_positioning_moved" | 464 "files/extensions/platform_apps/web_view/popup_positioning_moved" |
| 465 "/guest.html"); | 465 "/guest.html"); |
| 466 ASSERT_TRUE(guest_web_contents()); | 466 ASSERT_TRUE(guest_web_contents()); |
| 467 | 467 |
| 468 PopupTestHelper(gfx::Point(20, 0)); | 468 PopupTestHelper(gfx::Point(20, 0)); |
| 469 } | 469 } |
| OLD | NEW |