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/command_line.h" | 5 #include "base/command_line.h" |
| 6 #include "base/macros.h" |
6 #include "base/strings/stringprintf.h" | 7 #include "base/strings/stringprintf.h" |
7 #include "content/browser/loader/resource_dispatcher_host_impl.h" | 8 #include "content/browser/loader/resource_dispatcher_host_impl.h" |
8 #include "content/public/browser/navigation_entry.h" | 9 #include "content/public/browser/navigation_entry.h" |
9 #include "content/public/browser/resource_dispatcher_host_delegate.h" | 10 #include "content/public/browser/resource_dispatcher_host_delegate.h" |
10 #include "content/public/browser/resource_throttle.h" | 11 #include "content/public/browser/resource_throttle.h" |
11 #include "content/public/browser/web_contents.h" | 12 #include "content/public/browser/web_contents.h" |
12 #include "content/public/test/browser_test_utils.h" | 13 #include "content/public/test/browser_test_utils.h" |
13 #include "content/public/test/content_browser_test.h" | 14 #include "content/public/test/content_browser_test.h" |
14 #include "content/public/test/content_browser_test_utils.h" | 15 #include "content/public/test/content_browser_test_utils.h" |
15 #include "content/public/test/test_navigation_observer.h" | 16 #include "content/public/test/test_navigation_observer.h" |
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
411 EXPECT_EQ(0, controller.GetCurrentEntryIndex()); | 412 EXPECT_EQ(0, controller.GetCurrentEntryIndex()); |
412 EXPECT_EQ(url1, controller.GetEntryAtIndex(0)->GetURL()); | 413 EXPECT_EQ(url1, controller.GetEntryAtIndex(0)->GetURL()); |
413 | 414 |
414 // Make sure the request for url2 did not complete. | 415 // Make sure the request for url2 did not complete. |
415 EXPECT_FALSE(tracking_delegate().WaitForTrackedURLAndGetCompleted()); | 416 EXPECT_FALSE(tracking_delegate().WaitForTrackedURLAndGetCompleted()); |
416 | 417 |
417 shell()->web_contents()->SetDelegate(old_delegate); | 418 shell()->web_contents()->SetDelegate(old_delegate); |
418 } | 419 } |
419 | 420 |
420 } // namespace content | 421 } // namespace content |
OLD | NEW |