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

Unified Diff: chrome/browser/automation/automation_event_queue.h

Issue 106433007: Update some uses of Value in chrome/browser to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 7 years 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
Index: chrome/browser/automation/automation_event_queue.h
diff --git a/chrome/browser/automation/automation_event_queue.h b/chrome/browser/automation/automation_event_queue.h
index 1633e8a6c95f9e90ed8a3c1c405432aeb558af47..7548ccce70337ecf20d05047620cd1268082172e 100644
--- a/chrome/browser/automation/automation_event_queue.h
+++ b/chrome/browser/automation/automation_event_queue.h
@@ -23,16 +23,16 @@ class AutomationEventQueue {
// AutomationEvent stores return data dictionay for a single event.
class AutomationEvent {
public:
- AutomationEvent(int observer_id, DictionaryValue* event_value);
+ AutomationEvent(int observer_id, base::DictionaryValue* event_value);
virtual ~AutomationEvent() {}
int GetId() const { return observer_id_; }
- DictionaryValue* GetValue() { return event_value_.get(); }
- DictionaryValue* ReleaseValue() { return event_value_.release(); }
+ base::DictionaryValue* GetValue() { return event_value_.get(); }
+ base::DictionaryValue* ReleaseValue() { return event_value_.release(); }
private:
int observer_id_;
- scoped_ptr<DictionaryValue> event_value_;
+ scoped_ptr<base::DictionaryValue> event_value_;
};
void GetNextEvent(AutomationJSONReply* reply,
« no previous file with comments | « chrome/browser/automation/automation_event_observers_chromeos.cc ('k') | chrome/browser/automation/automation_event_queue.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698