Home | History | Annotate | Download | only in login

Lines Matching refs:profile

81 // This profile should NOT be an OTR profile.
83 Profile* profile = browser()->profile();
84 EXPECT_EQ("user", profile->GetPath().BaseName().value());
85 EXPECT_FALSE(profile->IsOffTheRecord());
88 // On initial launch, we should get the OTR default profile.
90 Profile* profile = browser()->profile();
91 EXPECT_EQ("Default", profile->GetPath().BaseName().value());
92 EXPECT_TRUE(profile->IsOffTheRecord());
93 // Ensure there's extension service for this profile.
94 EXPECT_TRUE(profile->GetExtensionService());