Index: chrome/browser/extensions/api/cookies/cookies_helpers.cc |
diff --git a/chrome/browser/extensions/api/cookies/cookies_helpers.cc b/chrome/browser/extensions/api/cookies/cookies_helpers.cc |
index a139d5d1bde1c85ce5a8130d5bf7f45a00286a40..ab82d08412695a2b7d03f873ec3282ae8f4c98ca 100644 |
--- a/chrome/browser/extensions/api/cookies/cookies_helpers.cc |
+++ b/chrome/browser/extensions/api/cookies/cookies_helpers.cc |
@@ -51,7 +51,7 @@ const char* GetStoreIdFromProfile(Profile* profile) { |
kOffTheRecordProfileStoreId : kOriginalProfileStoreId; |
} |
-DictionaryValue* CreateCookieValue( |
+base::DictionaryValue* CreateCookieValue( |
const net::CookieMonster::CanonicalCookie& cookie, |
const std::string& store_id) { |
DictionaryValue* result = new DictionaryValue(); |
@@ -80,7 +80,7 @@ DictionaryValue* CreateCookieValue( |
return result; |
} |
-DictionaryValue* CreateCookieStoreValue(Profile* profile, |
+base::DictionaryValue* CreateCookieStoreValue(Profile* profile, |
ListValue* tab_ids) { |
DCHECK(profile); |
DCHECK(tab_ids); |