Lines Matching defs:ScreenContext

27 ScreenContext::ScreenContext() {
30 ScreenContext::~ScreenContext() {
33 bool ScreenContext::SetBoolean(const KeyType& key, bool value) {
37 bool ScreenContext::SetInteger(const KeyType& key, int value) {
41 bool ScreenContext::SetDouble(const KeyType& key, double value) {
45 bool ScreenContext::SetString(const KeyType& key, const std::string& value) {
49 bool ScreenContext::SetString(const KeyType& key, const base::string16& value) {
53 bool ScreenContext::SetStringList(const KeyType& key, const StringList& value) {
57 bool ScreenContext::SetString16List(const KeyType& key,
62 bool ScreenContext::GetBoolean(const KeyType& key) const {
66 bool ScreenContext::GetBoolean(const KeyType& key, bool default_value) const {
70 int ScreenContext::GetInteger(const KeyType& key) const {
74 int ScreenContext::GetInteger(const KeyType& key, int default_value) const {
78 double ScreenContext::GetDouble(const KeyType& key) const {
82 double ScreenContext::GetDouble(const KeyType& key,
87 std::string ScreenContext::GetString(const KeyType& key) const {
91 std::string ScreenContext::GetString(const KeyType& key,
96 base::string16 ScreenContext::GetString16(const KeyType& key) const {
100 base::string16 ScreenContext::GetString16(
106 StringList ScreenContext::GetStringList(const KeyType& key) const {
110 StringList ScreenContext::GetStringList(const KeyType& key,
115 String16List ScreenContext::GetString16List(const KeyType& key) const {
119 String16List ScreenContext::GetString16List(
125 bool ScreenContext::HasKey(const KeyType& key) const {
130 bool ScreenContext::HasChanges() const {
135 void ScreenContext::GetChangesAndReset(base::DictionaryValue* diff) {
142 void ScreenContext::ApplyChanges(const base::DictionaryValue& diff,
160 bool ScreenContext::Set(const KeyType& key, base::Value* value) {