Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(891)

Unified Diff: chrome/browser/ssl/ssl_browser_tests.cc

Issue 8949061: Move a bunch of methods from TabContents into the WebContents interface. This change either moves... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ssl/ssl_browser_tests.cc
===================================================================
--- chrome/browser/ssl/ssl_browser_tests.cc (revision 115435)
+++ chrome/browser/ssl/ssl_browser_tests.cc (working copy)
@@ -46,7 +46,7 @@
void CheckAuthenticatedState(TabContents* tab,
bool displayed_insecure_content) {
- ASSERT_FALSE(tab->is_crashed());
+ ASSERT_FALSE(tab->IsCrashed());
NavigationEntry* entry = tab->GetController().GetActiveEntry();
ASSERT_TRUE(entry);
EXPECT_EQ(content::PAGE_TYPE_NORMAL, entry->page_type());
@@ -59,7 +59,7 @@
}
void CheckUnauthenticatedState(TabContents* tab) {
- ASSERT_FALSE(tab->is_crashed());
+ ASSERT_FALSE(tab->IsCrashed());
NavigationEntry* entry = tab->GetController().GetActiveEntry();
ASSERT_TRUE(entry);
EXPECT_EQ(content::PAGE_TYPE_NORMAL, entry->page_type());
@@ -74,7 +74,7 @@
net::CertStatus error,
bool ran_insecure_content,
bool interstitial) {
- ASSERT_FALSE(tab->is_crashed());
+ ASSERT_FALSE(tab->IsCrashed());
NavigationEntry* entry = tab->GetController().GetActiveEntry();
ASSERT_TRUE(entry);
EXPECT_EQ(interstitial ?

Powered by Google App Engine
This is Rietveld 408576698