| Index: chrome/browser/accessibility_events.h
|
| ===================================================================
|
| --- chrome/browser/accessibility_events.h (revision 92173)
|
| +++ chrome/browser/accessibility_events.h (working copy)
|
| @@ -9,9 +9,12 @@
|
| #include <string>
|
|
|
| class AccessibilityControlInfo;
|
| -class DictionaryValue;
|
| class Profile;
|
|
|
| +namespace base {
|
| +class DictionaryValue;
|
| +}
|
| +
|
| // Use the NotificationService to post the given accessibility
|
| // notification type with AccessibilityControlInfo details to any
|
| // listeners. Will not send if the profile's pause level is nonzero
|
| @@ -27,7 +30,7 @@
|
|
|
| // Serialize this class as a DictionaryValue that can be converted to
|
| // a JavaScript object.
|
| - virtual void SerializeToDict(DictionaryValue* dict) const;
|
| + virtual void SerializeToDict(base::DictionaryValue* dict) const;
|
|
|
| // Return the specific type of this control, which will be one of the
|
| // string constants defined in extension_accessibility_api_constants.h.
|
| @@ -86,7 +89,7 @@
|
|
|
| virtual const char* type() const;
|
|
|
| - virtual void SerializeToDict(DictionaryValue* dict) const;
|
| + virtual void SerializeToDict(base::DictionaryValue* dict) const;
|
|
|
| void SetChecked(bool checked) { checked_ = checked; }
|
|
|
| @@ -111,7 +114,7 @@
|
|
|
| virtual const char* type() const;
|
|
|
| - virtual void SerializeToDict(DictionaryValue* dict) const;
|
| + virtual void SerializeToDict(base::DictionaryValue* dict) const;
|
|
|
| void SetChecked(bool checked) { checked_ = checked; }
|
|
|
| @@ -132,7 +135,7 @@
|
|
|
| virtual const char* type() const;
|
|
|
| - virtual void SerializeToDict(DictionaryValue* dict) const;
|
| + virtual void SerializeToDict(base::DictionaryValue* dict) const;
|
|
|
| void SetTab(int tab_index, std::string tab_name) {
|
| tab_index_ = tab_index;
|
| @@ -160,7 +163,7 @@
|
|
|
| virtual const char* type() const;
|
|
|
| - virtual void SerializeToDict(DictionaryValue* dict) const;
|
| + virtual void SerializeToDict(base::DictionaryValue* dict) const;
|
|
|
| void SetValue(int item_index, const std::string& value) {
|
| item_index_ = item_index;
|
| @@ -190,7 +193,7 @@
|
|
|
| virtual const char* type() const;
|
|
|
| - virtual void SerializeToDict(DictionaryValue* dict) const;
|
| + virtual void SerializeToDict(base::DictionaryValue* dict) const;
|
|
|
| void SetValue(
|
| const std::string& value, int selection_start, int selection_end) {
|
| @@ -223,7 +226,7 @@
|
|
|
| virtual const char* type() const;
|
|
|
| - virtual void SerializeToDict(DictionaryValue* dict) const;
|
| + virtual void SerializeToDict(base::DictionaryValue* dict) const;
|
|
|
| void SetValue(int item_index, std::string value) {
|
| item_index_ = item_index;
|
| @@ -264,7 +267,7 @@
|
|
|
| virtual const char* type() const;
|
|
|
| - virtual void SerializeToDict(DictionaryValue* dict) const;
|
| + virtual void SerializeToDict(base::DictionaryValue* dict) const;
|
|
|
| int item_index() const { return item_index_; }
|
| int item_count() const { return item_count_; }
|
|
|