Home | History | Annotate | Download | only in prefs

Lines Matching defs:store

48   scoped_refptr<CommandLinePrefStore> store = new CommandLinePrefStore(&cl);
52 store->GetValue(prefs::kApplicationLocale, &actual));
62 scoped_refptr<TestCommandLinePrefStore> store =
65 store->VerifyProxyMode(ProxyPrefs::MODE_DIRECT);
73 scoped_refptr<CommandLinePrefStore> store = new CommandLinePrefStore(&cl);
76 EXPECT_EQ(PrefStore::READ_NO_VALUE, store->GetValue(unknown_bool, &actual));
77 EXPECT_EQ(PrefStore::READ_NO_VALUE, store->GetValue(unknown_string, &actual));
87 scoped_refptr<TestCommandLinePrefStore> store =
91 EXPECT_EQ(PrefStore::READ_NO_VALUE, store->GetValue(unknown_bool, &actual));
92 EXPECT_EQ(PrefStore::READ_NO_VALUE, store->GetValue(unknown_string, &actual));
94 store->VerifyProxyMode(ProxyPrefs::MODE_FIXED_SERVERS);
97 ASSERT_EQ(PrefStore::READ_OK, store->GetValue(prefs::kProxy, &value));
115 scoped_refptr<TestCommandLinePrefStore> store =
117 EXPECT_TRUE(store->ProxySwitchesAreValid());