| 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 fe1f01f35fe02a45069ff3485282ab779aff2b5f..c151c9278bcb15074f92a785bc04de18d7d7891e 100644
|
| --- a/chrome/browser/extensions/api/cookies/cookies_helpers.cc
|
| +++ b/chrome/browser/extensions/api/cookies/cookies_helpers.cc
|
| @@ -90,10 +90,10 @@ scoped_ptr<Cookie> CreateCookie(
|
| }
|
|
|
| scoped_ptr<CookieStore> CreateCookieStore(Profile* profile,
|
| - ListValue* tab_ids) {
|
| + base::ListValue* tab_ids) {
|
| DCHECK(profile);
|
| DCHECK(tab_ids);
|
| - DictionaryValue dict;
|
| + base::DictionaryValue dict;
|
| dict.SetString(keys::kIdKey, GetStoreIdFromProfile(profile));
|
| dict.Set(keys::kTabIdsKey, tab_ids);
|
|
|
| @@ -146,7 +146,7 @@ void AppendMatchingCookiesToVector(const net::CookieList& all_cookies,
|
| }
|
| }
|
|
|
| -void AppendToTabIdList(Browser* browser, ListValue* tab_ids) {
|
| +void AppendToTabIdList(Browser* browser, base::ListValue* tab_ids) {
|
| DCHECK(browser);
|
| DCHECK(tab_ids);
|
| TabStripModel* tab_strip = browser->tab_strip_model();
|
|
|