Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(719)

Unified Diff: chrome/browser/accessibility_events.h

Issue 7259019: Move base/values.h into the base namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/about_flags.h ('k') | chrome/browser/autocomplete/search_provider.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_; }
« no previous file with comments | « chrome/browser/about_flags.h ('k') | chrome/browser/autocomplete/search_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698