| Index: chrome/browser/ui/app_list/app_list_service_mac.mm
|
| diff --git a/chrome/browser/ui/app_list/app_list_service_mac.mm b/chrome/browser/ui/app_list/app_list_service_mac.mm
|
| index d45672a154029eb0ed83e20a799e348345619916..3c112d47b04925c0227849e62d393e637e92175e 100644
|
| --- a/chrome/browser/ui/app_list/app_list_service_mac.mm
|
| +++ b/chrome/browser/ui/app_list/app_list_service_mac.mm
|
| @@ -88,20 +88,21 @@ const NSTimeInterval kAnimationDuration = 0.2;
|
| // Distance towards the screen edge that the app list moves from when showing.
|
| const CGFloat kDistanceMovedOnShow = 20;
|
|
|
| -web_app::ShortcutInfo GetAppListShortcutInfo(
|
| +scoped_ptr<web_app::ShortcutInfo> GetAppListShortcutInfo(
|
| const base::FilePath& profile_path) {
|
| - web_app::ShortcutInfo shortcut_info;
|
| + scoped_ptr<web_app::ShortcutInfo> shortcut_info(new web_app::ShortcutInfo);
|
| chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel();
|
| if (channel == chrome::VersionInfo::CHANNEL_CANARY) {
|
| - shortcut_info.title =
|
| + shortcut_info->title =
|
| l10n_util::GetStringUTF16(IDS_APP_LIST_SHORTCUT_NAME_CANARY);
|
| } else {
|
| - shortcut_info.title = l10n_util::GetStringUTF16(IDS_APP_LIST_SHORTCUT_NAME);
|
| + shortcut_info->title =
|
| + l10n_util::GetStringUTF16(IDS_APP_LIST_SHORTCUT_NAME);
|
| }
|
|
|
| - shortcut_info.extension_id = app_mode::kAppListModeId;
|
| - shortcut_info.description = shortcut_info.title;
|
| - shortcut_info.profile_path = profile_path;
|
| + shortcut_info->extension_id = app_mode::kAppListModeId;
|
| + shortcut_info->description = shortcut_info->title;
|
| + shortcut_info->profile_path = profile_path;
|
|
|
| return shortcut_info;
|
| }
|
| @@ -109,32 +110,32 @@ web_app::ShortcutInfo GetAppListShortcutInfo(
|
| void CreateAppListShim(const base::FilePath& profile_path) {
|
| DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
|
| WebApplicationInfo web_app_info;
|
| - web_app::ShortcutInfo shortcut_info =
|
| + scoped_ptr<web_app::ShortcutInfo> shortcut_info =
|
| GetAppListShortcutInfo(profile_path);
|
|
|
| ResourceBundle& resource_bundle = ResourceBundle::GetSharedInstance();
|
| chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel();
|
| if (channel == chrome::VersionInfo::CHANNEL_CANARY) {
|
| #if defined(GOOGLE_CHROME_BUILD)
|
| - shortcut_info.favicon.Add(
|
| + shortcut_info->favicon.Add(
|
| *resource_bundle.GetImageSkiaNamed(IDR_APP_LIST_CANARY_16));
|
| - shortcut_info.favicon.Add(
|
| + shortcut_info->favicon.Add(
|
| *resource_bundle.GetImageSkiaNamed(IDR_APP_LIST_CANARY_32));
|
| - shortcut_info.favicon.Add(
|
| + shortcut_info->favicon.Add(
|
| *resource_bundle.GetImageSkiaNamed(IDR_APP_LIST_CANARY_128));
|
| - shortcut_info.favicon.Add(
|
| + shortcut_info->favicon.Add(
|
| *resource_bundle.GetImageSkiaNamed(IDR_APP_LIST_CANARY_256));
|
| #else
|
| NOTREACHED();
|
| #endif
|
| } else {
|
| - shortcut_info.favicon.Add(
|
| + shortcut_info->favicon.Add(
|
| *resource_bundle.GetImageSkiaNamed(IDR_APP_LIST_16));
|
| - shortcut_info.favicon.Add(
|
| + shortcut_info->favicon.Add(
|
| *resource_bundle.GetImageSkiaNamed(IDR_APP_LIST_32));
|
| - shortcut_info.favicon.Add(
|
| + shortcut_info->favicon.Add(
|
| *resource_bundle.GetImageSkiaNamed(IDR_APP_LIST_128));
|
| - shortcut_info.favicon.Add(
|
| + shortcut_info->favicon.Add(
|
| *resource_bundle.GetImageSkiaNamed(IDR_APP_LIST_256));
|
| }
|
|
|
| @@ -150,7 +151,7 @@ void CreateAppListShim(const base::FilePath& profile_path) {
|
| if (installed_version == 0)
|
| shortcut_locations.in_quick_launch_bar = true;
|
|
|
| - web_app::CreateNonAppShortcut(shortcut_locations, shortcut_info);
|
| + web_app::CreateNonAppShortcut(shortcut_locations, shortcut_info.Pass());
|
|
|
| local_state->SetInteger(prefs::kAppLauncherShortcutVersion,
|
| kShortcutVersion);
|
|
|