| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 "chrome/app/chrome_dll_resource.h" | 5 #include "chrome/app/chrome_dll_resource.h" |
| 6 #include "chrome/test/automation/browser_proxy.h" | 6 #include "chrome/test/automation/browser_proxy.h" |
| 7 #include "chrome/test/automation/tab_proxy.h" | 7 #include "chrome/test/automation/tab_proxy.h" |
| 8 #include "chrome/test/ui/ui_test.h" | 8 #include "chrome/test/ui/ui_test.h" |
| 9 #include "net/url_request/url_request_unittest.h" | 9 #include "net/url_request/url_request_unittest.h" |
| 10 | 10 |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 | 74 |
| 75 // Close it. | 75 // Close it. |
| 76 EXPECT_TRUE(tabC->Close(true)); | 76 EXPECT_TRUE(tabC->Close(true)); |
| 77 | 77 |
| 78 // See if the Find window has moved. | 78 // See if the Find window has moved. |
| 79 EXPECT_TRUE(browser->GetFindWindowLocation(&new_x, &new_y)); | 79 EXPECT_TRUE(browser->GetFindWindowLocation(&new_x, &new_y)); |
| 80 | 80 |
| 81 EXPECT_EQ(x, new_x); | 81 EXPECT_EQ(x, new_x); |
| 82 EXPECT_EQ(y, new_y); | 82 EXPECT_EQ(y, new_y); |
| 83 } | 83 } |
| OLD | NEW |