HomeSort by relevance Sort by last modified time
    Searched defs:pref_store (Results 1 - 3 of 3) sorted by null

  /external/chromium/chrome/common/
json_pref_store_unittest.cc 47 scoped_refptr<JsonPrefStore> pref_store = local
50 pref_store->ReadPrefs());
51 EXPECT_FALSE(pref_store->ReadOnly());
59 scoped_refptr<JsonPrefStore> pref_store = local
62 pref_store->ReadPrefs());
63 EXPECT_FALSE(pref_store->ReadOnly());
80 scoped_refptr<JsonPrefStore> pref_store = local
82 ASSERT_EQ(PersistentPrefStore::PREF_READ_ERROR_NONE, pref_store->ReadPrefs());
83 ASSERT_FALSE(pref_store->ReadOnly());
103 pref_store->GetValue(prefs::kHomePage, &actual))
    [all...]
  /external/chromium_org/base/prefs/
json_pref_store_unittest.cc 62 scoped_refptr<JsonPrefStore> pref_store = new JsonPrefStore( local
65 pref_store->ReadPrefs());
66 EXPECT_FALSE(pref_store->ReadOnly());
74 scoped_refptr<JsonPrefStore> pref_store = local
77 pref_store->ReadPrefs());
78 EXPECT_FALSE(pref_store->ReadOnly());
89 void RunBasicJsonPrefStoreTest(JsonPrefStore* pref_store,
99 EXPECT_TRUE(pref_store->GetValue(kHomePage, &actual));
106 EXPECT_TRUE(pref_store->GetValue(kSomeDirectory, &actual));
112 pref_store->SetValue(kSomeDirectory, new StringValue(some_path.value()))
160 scoped_refptr<JsonPrefStore> pref_store = local
186 scoped_refptr<JsonPrefStore> pref_store = local
223 scoped_refptr<JsonPrefStore> pref_store = new JsonPrefStore( local
249 scoped_refptr<JsonPrefStore> pref_store = local
    [all...]
  /external/chromium_org/chrome/browser/policy/
managed_mode_policy_provider.cc 65 JsonPrefStore* pref_store = new JsonPrefStore(path, sequenced_task_runner); local
68 pref_store->ReadPrefs();
70 pref_store->ReadPrefsAsync(NULL);
72 return make_scoped_ptr(new ManagedModePolicyProvider(pref_store));
76 PersistentPrefStore* pref_store)
77 : store_(pref_store),

Completed in 86 milliseconds