| Index: chrome/browser/notifications/notifications_prefs_cache.cc
|
| diff --git a/chrome/browser/notifications/notifications_prefs_cache.cc b/chrome/browser/notifications/notifications_prefs_cache.cc
|
| index 2fec1e88c6e5d60ddf417a71518a7b8aae2b5610..4a60a956111f0b64d7835a924b455d6d4f5aac7d 100644
|
| --- a/chrome/browser/notifications/notifications_prefs_cache.cc
|
| +++ b/chrome/browser/notifications/notifications_prefs_cache.cc
|
| @@ -55,10 +55,10 @@ void NotificationsPrefsCache::ListValueToGurlVector(
|
| const ListValue& origin_list,
|
| std::vector<GURL>* origin_vector) {
|
| ListValue::const_iterator i;
|
| - std::wstring origin;
|
| + std::string origin;
|
| for (i = origin_list.begin(); i != origin_list.end(); ++i) {
|
| (*i)->GetAsString(&origin);
|
| - origin_vector->push_back(GURL(WideToUTF8(origin)));
|
| + origin_vector->push_back(GURL(origin));
|
| }
|
| }
|
|
|
|
|