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

Unified Diff: chrome/browser/guestview/guestview.h

Issue 104493005: 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
« no previous file with comments | « chrome/browser/guestview/adview/adview_guest.cc ('k') | chrome/browser/guestview/guestview.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/guestview/guestview.h
diff --git a/chrome/browser/guestview/guestview.h b/chrome/browser/guestview/guestview.h
index 8b6e03b73087c1e70c33604873a43d7dc42b7ba1..46485840a62a5b616aa07ee4e700bc82360060c2 100644
--- a/chrome/browser/guestview/guestview.h
+++ b/chrome/browser/guestview/guestview.h
@@ -29,16 +29,16 @@ class GuestView : public content::BrowserPluginGuestDelegate {
class Event {
public:
- Event(const std::string& name, scoped_ptr<DictionaryValue> args);
+ Event(const std::string& name, scoped_ptr<base::DictionaryValue> args);
~Event();
const std::string& name() const { return name_; }
- scoped_ptr<DictionaryValue> GetArguments();
+ scoped_ptr<base::DictionaryValue> GetArguments();
private:
const std::string name_;
- scoped_ptr<DictionaryValue> args_;
+ scoped_ptr<base::DictionaryValue> args_;
};
static Type GetViewTypeFromString(const std::string& api_type);
« no previous file with comments | « chrome/browser/guestview/adview/adview_guest.cc ('k') | chrome/browser/guestview/guestview.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698