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

Unified Diff: chrome/browser/extensions/extension_cookies_api.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
Index: chrome/browser/extensions/extension_cookies_api.h
===================================================================
--- chrome/browser/extensions/extension_cookies_api.h (revision 92173)
+++ chrome/browser/extensions/extension_cookies_api.h (working copy)
@@ -20,7 +20,9 @@
#include "googleurl/src/gurl.h"
#include "net/base/cookie_monster.h"
+namespace base {
class DictionaryValue;
+}
namespace net {
class URLRequestContextGetter;
@@ -74,7 +76,7 @@
// URL is invalid or isn't found in the dictionary. If check_host_permissions
// is true, the URL is also checked against the extension's host permissions,
// and if there is no permission for the URL, this function returns false.
- bool ParseUrl(const DictionaryValue* details, GURL* url,
+ bool ParseUrl(const base::DictionaryValue* details, GURL* url,
bool check_host_permissions);
// Checks the given details dictionary for a 'storeId' value, and retrieves
@@ -84,7 +86,7 @@
// assigns the internal error_ value if that occurs.
// At least one of the output parameters store and store_id should be
// non-NULL.
- bool ParseStoreContext(const DictionaryValue* details,
+ bool ParseStoreContext(const base::DictionaryValue* details,
net::URLRequestContextGetter** context,
std::string* store_id);
};
@@ -119,7 +121,7 @@
void GetAllCookiesOnIOThread();
void RespondOnUIThread();
- DictionaryValue* details_;
+ base::DictionaryValue* details_;
GURL url_;
std::string store_id_;
scoped_refptr<net::URLRequestContextGetter> store_context_;
« no previous file with comments | « chrome/browser/extensions/extension_context_menu_api.h ('k') | chrome/browser/extensions/extension_cookies_helpers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698