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/logging.h" | 5 #include "base/logging.h" |
6 #include "base/utf_string_conversions.h" | 6 #include "base/utf_string_conversions.h" |
7 #include "content/browser/mock_content_browser_client.h" | 7 #include "content/browser/mock_content_browser_client.h" |
8 #include "content/browser/renderer_host/render_view_host_impl.h" | 8 #include "content/browser/renderer_host/render_view_host_impl.h" |
9 #include "content/browser/renderer_host/test_render_view_host.h" | 9 #include "content/browser/renderer_host/test_render_view_host.h" |
10 #include "content/browser/site_instance_impl.h" | 10 #include "content/browser/site_instance_impl.h" |
11 #include "content/browser/tab_contents/test_web_contents.h" | |
12 #include "content/browser/web_contents/interstitial_page_impl.h" | 11 #include "content/browser/web_contents/interstitial_page_impl.h" |
13 #include "content/browser/web_contents/navigation_entry_impl.h" | 12 #include "content/browser/web_contents/navigation_entry_impl.h" |
| 13 #include "content/browser/web_contents/test_web_contents.h" |
14 #include "content/common/view_messages.h" | 14 #include "content/common/view_messages.h" |
15 #include "content/public/browser/interstitial_page_delegate.h" | 15 #include "content/public/browser/interstitial_page_delegate.h" |
16 #include "content/public/browser/navigation_details.h" | 16 #include "content/public/browser/navigation_details.h" |
17 #include "content/public/browser/notification_details.h" | 17 #include "content/public/browser/notification_details.h" |
18 #include "content/public/browser/notification_source.h" | 18 #include "content/public/browser/notification_source.h" |
19 #include "content/public/browser/notification_source.h" | 19 #include "content/public/browser/notification_source.h" |
20 #include "content/public/browser/render_widget_host_view.h" | 20 #include "content/public/browser/render_widget_host_view.h" |
21 #include "content/public/browser/web_ui_controller.h" | 21 #include "content/public/browser/web_ui_controller.h" |
22 #include "content/public/browser/web_ui_controller_factory.h" | 22 #include "content/public/browser/web_ui_controller_factory.h" |
23 #include "content/public/common/bindings_policy.h" | 23 #include "content/public/common/bindings_policy.h" |
(...skipping 1904 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1928 // It should have a transient entry. | 1928 // It should have a transient entry. |
1929 EXPECT_TRUE(other_controller.GetTransientEntry()); | 1929 EXPECT_TRUE(other_controller.GetTransientEntry()); |
1930 | 1930 |
1931 // And the interstitial should be showing. | 1931 // And the interstitial should be showing. |
1932 EXPECT_TRUE(other_contents->ShowingInterstitialPage()); | 1932 EXPECT_TRUE(other_contents->ShowingInterstitialPage()); |
1933 | 1933 |
1934 // And the interstitial should do a reload on don't proceed. | 1934 // And the interstitial should do a reload on don't proceed. |
1935 EXPECT_TRUE(static_cast<InterstitialPageImpl*>( | 1935 EXPECT_TRUE(static_cast<InterstitialPageImpl*>( |
1936 other_contents->GetInterstitialPage())->reload_on_dont_proceed()); | 1936 other_contents->GetInterstitialPage())->reload_on_dont_proceed()); |
1937 } | 1937 } |
OLD | NEW |