Home | History | Annotate | Download | only in avatar

Lines Matching refs:image_properties

142     base::DictionaryValue* image_properties = new base::DictionaryValue();
143 image_properties->Set("index", new base::FundamentalValue(image_index));
144 image_properties->Set(
146 images_pref->SetWithoutPathExpansion(username, image_properties);
155 const base::DictionaryValue* image_properties = NULL;
156 images_pref->GetDictionaryWithoutPathExpansion(username, &image_properties);
157 ASSERT_TRUE(image_properties);
160 ASSERT_TRUE(image_properties->GetInteger("index", &actual_image_index) &&
161 image_properties->GetString("path", &actual_image_path));
171 const base::DictionaryValue* image_properties = NULL;
172 images_pref->GetDictionaryWithoutPathExpansion(username, &image_properties);
173 ASSERT_FALSE(image_properties);