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

Unified Diff: content/browser/site_instance_impl_unittest.cc

Issue 2437253002: Improve TDI render process naming in the task manager. (Closed)
Patch Set: ncarter Created 4 years, 2 months 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
« no previous file with comments | « content/browser/site_instance_impl.cc ('k') | content/public/browser/site_instance.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/site_instance_impl_unittest.cc
diff --git a/content/browser/site_instance_impl_unittest.cc b/content/browser/site_instance_impl_unittest.cc
index 400c3f957b7b6a5b298606ecf68f7e0641c78ba9..2523cfc34799977f20dfeb6098aac3477236cd73 100644
--- a/content/browser/site_instance_impl_unittest.cc
+++ b/content/browser/site_instance_impl_unittest.cc
@@ -813,8 +813,8 @@ TEST_F(SiteInstanceTest, DefaultSubframeSiteInstance) {
EXPECT_NE(main_instance, subframe_instance);
EXPECT_EQ(subframe_instance, main_instance->GetDefaultSubframeSiteInstance());
- EXPECT_FALSE(main_instance->is_default_subframe_site_instance());
- EXPECT_TRUE(subframe_instance->is_default_subframe_site_instance());
+ EXPECT_FALSE(main_instance->IsDefaultSubframeSiteInstance());
+ EXPECT_TRUE(subframe_instance->IsDefaultSubframeSiteInstance());
EXPECT_EQ(0, browser_client()->GetAndClearSiteInstanceDeleteCount());
EXPECT_EQ(0, browser_client()->GetAndClearBrowsingInstanceDeleteCount());
@@ -828,8 +828,8 @@ TEST_F(SiteInstanceTest, DefaultSubframeSiteInstance) {
// SiteInstance with a different ID from the original.
subframe_instance = main_instance->GetDefaultSubframeSiteInstance();
EXPECT_NE(subframe_instance->GetId(), subframe_instance_id);
- EXPECT_FALSE(main_instance->is_default_subframe_site_instance());
- EXPECT_TRUE(subframe_instance->is_default_subframe_site_instance());
+ EXPECT_FALSE(main_instance->IsDefaultSubframeSiteInstance());
+ EXPECT_TRUE(subframe_instance->IsDefaultSubframeSiteInstance());
EXPECT_EQ(subframe_instance->GetDefaultSubframeSiteInstance(),
subframe_instance);
EXPECT_EQ(0, browser_client()->GetAndClearSiteInstanceDeleteCount());
« no previous file with comments | « content/browser/site_instance_impl.cc ('k') | content/public/browser/site_instance.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698