Home | History | Annotate | Download | only in tab_model

Lines Matching refs:testing_profile

8 #include "chrome/test/base/testing_profile.h"
53 TestingProfile testing_profile;
54 TestTabModel tab_model(&testing_profile);
57 EXPECT_EQ(&testing_profile, tab_model.GetProfile());
63 content::Source<Profile>(&testing_profile),
70 TabModelAndroidProfileMock testing_profile;
71 EXPECT_CALL(testing_profile, HasOffTheRecordProfile())
73 EXPECT_CALL(testing_profile, GetOffTheRecordProfile())
74 .WillOnce(testing::Return(&testing_profile));
75 TestTabModel tab_model(&testing_profile);
78 EXPECT_EQ(&testing_profile, tab_model.GetProfile());
84 content::Source<Profile>(&testing_profile),