OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "chrome/browser/dom_operation_notification_details.h" | 7 #include "chrome/browser/dom_operation_notification_details.h" |
8 #include "chrome/browser/prefs/pref_service.h" | 8 #include "chrome/browser/prefs/pref_service.h" |
9 #include "chrome/browser/tab_contents/chrome_interstitial_page.h" | 9 #include "chrome/browser/tab_contents/chrome_interstitial_page.h" |
10 #include "chrome/common/chrome_notification_types.h" | 10 #include "chrome/common/chrome_notification_types.h" |
11 #include "chrome/common/pref_names.h" | 11 #include "chrome/common/pref_names.h" |
12 #include "chrome/common/render_messages.h" | 12 #include "chrome/common/render_messages.h" |
13 #include "chrome/common/url_constants.h" | 13 #include "chrome/common/url_constants.h" |
14 #include "chrome/test/base/chrome_render_view_host_test_harness.h" | 14 #include "chrome/test/base/chrome_render_view_host_test_harness.h" |
15 #include "chrome/test/base/testing_pref_service.h" | 15 #include "chrome/test/base/testing_pref_service.h" |
16 #include "chrome/test/base/testing_profile.h" | 16 #include "chrome/test/base/testing_profile.h" |
17 #include "content/browser/browser_thread.h" | 17 #include "content/browser/browser_thread.h" |
18 #include "content/browser/renderer_host/render_view_host.h" | 18 #include "content/browser/renderer_host/render_view_host.h" |
19 #include "content/browser/renderer_host/render_widget_host_view.h" | 19 #include "content/browser/renderer_host/render_widget_host_view.h" |
20 #include "content/browser/site_instance.h" | 20 #include "content/browser/site_instance.h" |
21 #include "content/browser/tab_contents/navigation_details.h" | 21 #include "content/browser/tab_contents/navigation_details.h" |
22 #include "content/browser/tab_contents/navigation_entry.h" | 22 #include "content/browser/tab_contents/navigation_entry.h" |
23 #include "content/browser/tab_contents/test_tab_contents.h" | 23 #include "content/browser/tab_contents/test_tab_contents.h" |
24 #include "content/common/content_constants.h" | 24 #include "content/common/content_constants.h" |
25 #include "content/common/notification_service.h" | 25 #include "content/public/browser/notification_details.h" |
| 26 #include "content/public/browser/notification_source.h" |
26 #include "content/common/view_messages.h" | 27 #include "content/common/view_messages.h" |
27 #include "content/public/browser/notification_source.h" | 28 #include "content/public/browser/notification_source.h" |
28 #include "content/public/common/bindings_policy.h" | 29 #include "content/public/common/bindings_policy.h" |
29 #include "testing/gtest/include/gtest/gtest.h" | 30 #include "testing/gtest/include/gtest/gtest.h" |
30 #include "ui/base/message_box_flags.h" | 31 #include "ui/base/message_box_flags.h" |
31 #include "webkit/glue/webkit_glue.h" | 32 #include "webkit/glue/webkit_glue.h" |
32 | 33 |
33 using webkit_glue::PasswordForm; | 34 using webkit_glue::PasswordForm; |
34 | 35 |
35 class TestInterstitialPage : public ChromeInterstitialPage { | 36 class TestInterstitialPage : public ChromeInterstitialPage { |
(...skipping 1767 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1803 | 1804 |
1804 // It should have a transient entry. | 1805 // It should have a transient entry. |
1805 EXPECT_TRUE(other_controller.GetTransientEntry()); | 1806 EXPECT_TRUE(other_controller.GetTransientEntry()); |
1806 | 1807 |
1807 // And the interstitial should be showing. | 1808 // And the interstitial should be showing. |
1808 EXPECT_TRUE(other_contents->showing_interstitial_page()); | 1809 EXPECT_TRUE(other_contents->showing_interstitial_page()); |
1809 | 1810 |
1810 // And the interstitial should do a reload on don't proceed. | 1811 // And the interstitial should do a reload on don't proceed. |
1811 EXPECT_TRUE(other_contents->interstitial_page()->reload_on_dont_proceed()); | 1812 EXPECT_TRUE(other_contents->interstitial_page()->reload_on_dont_proceed()); |
1812 } | 1813 } |
OLD | NEW |