Home | History | Annotate | Download | only in prefs

Lines Matching refs:PrefMember

54     // See PrefMember<> for description.
69 // the thread the PrefMember is on.
83 // See PrefMember<> for description.
89 // See PrefMember<> for description.
131 class PrefMember : public subtle::PrefMemberBase {
135 PrefMember() {}
136 virtual ~PrefMember() {}
146 // Unsubscribes the PrefMember from the PrefService. After calling this
147 // function, the PrefMember may not be used any more.
153 // Moves the PrefMember to another thread, allowing read accesses from there.
156 // This method should only be used from the thread the PrefMember is currently
165 // This method should only be used from the thread the PrefMember is currently
173 // This method should only be used from the thread the PrefMember is currently
239 DISALLOW_COPY_AND_ASSIGN(PrefMember);
242 typedef PrefMember<bool> BooleanPrefMember;
243 typedef PrefMember<int> IntegerPrefMember;
244 typedef PrefMember<double> DoublePrefMember;
245 typedef PrefMember<std::string> StringPrefMember;
246 typedef PrefMember<FilePath> FilePathPrefMember;
247 typedef PrefMember<ListValue*> ListPrefMember;