OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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/file_path.h" | 5 #include "base/file_path.h" |
6 #include "base/utf_string_conversions.h" | 6 #include "base/utf_string_conversions.h" |
7 #include "chrome/browser/ui/browser.h" | 7 #include "chrome/browser/ui/browser.h" |
8 #include "chrome/browser/ui/browser_tabstrip.h" | 8 #include "chrome/browser/ui/browser_tabstrip.h" |
9 #include "chrome/test/base/in_process_browser_test.h" | 9 #include "chrome/test/base/in_process_browser_test.h" |
10 #include "chrome/test/base/ui_test_utils.h" | 10 #include "chrome/test/base/ui_test_utils.h" |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 // a javascript onMouseOut event. | 71 // a javascript onMouseOut event. |
72 ui_controls::SendMouseMove(above_content_point.x(), above_content_point.y()); | 72 ui_controls::SendMouseMove(above_content_point.x(), above_content_point.y()); |
73 | 73 |
74 // Wait on the correct final value of the cookie. | 74 // Wait on the correct final value of the cookie. |
75 string16 left_expected_title(ASCIIToUTF16("left")); | 75 string16 left_expected_title(ASCIIToUTF16("left")); |
76 content::TitleWatcher left_title_watcher(tab, left_expected_title); | 76 content::TitleWatcher left_title_watcher(tab, left_expected_title); |
77 EXPECT_EQ(left_expected_title, left_title_watcher.WaitAndGetTitle()); | 77 EXPECT_EQ(left_expected_title, left_title_watcher.WaitAndGetTitle()); |
78 } | 78 } |
79 | 79 |
80 } // namespace | 80 } // namespace |
OLD | NEW |