| Index: chrome/browser/chromeos/extensions/wallpaper_private_api.cc
|
| diff --git a/chrome/browser/chromeos/extensions/wallpaper_private_api.cc b/chrome/browser/chromeos/extensions/wallpaper_private_api.cc
|
| index 4624b6d1cd92e0c44e6ad849b26d6faf8660e5a0..c4b71df1480dcb7c07826893164ab3ed70870723 100644
|
| --- a/chrome/browser/chromeos/extensions/wallpaper_private_api.cc
|
| +++ b/chrome/browser/chromeos/extensions/wallpaper_private_api.cc
|
| @@ -233,7 +233,7 @@ void WindowStateManager::OnWindowDestroyed(aura::Window* window) {
|
| } // namespace
|
|
|
| bool WallpaperPrivateGetStringsFunction::RunImpl() {
|
| - DictionaryValue* dict = new DictionaryValue();
|
| + base::DictionaryValue* dict = new base::DictionaryValue();
|
| SetResult(dict);
|
|
|
| #define SET_STRING(id, idr) \
|
| @@ -842,7 +842,7 @@ void WallpaperPrivateGetOfflineWallpaperListFunction::GetList() {
|
|
|
| void WallpaperPrivateGetOfflineWallpaperListFunction::OnComplete(
|
| const std::vector<std::string>& file_list) {
|
| - ListValue* results = new ListValue();
|
| + base::ListValue* results = new base::ListValue();
|
| results->AppendStrings(file_list);
|
| SetResult(results);
|
| SendResponse(true);
|
|
|