| Index: chrome/browser/ui/ash/launcher/chrome_launcher_controller_per_app.cc
|
| diff --git a/chrome/browser/ui/ash/launcher/chrome_launcher_controller_per_app.cc b/chrome/browser/ui/ash/launcher/chrome_launcher_controller_per_app.cc
|
| index 1c36328c40020131c63ef040e30a67b53e603600..a2f442840f863ebd8aff731367969a5b3465f0a0 100644
|
| --- a/chrome/browser/ui/ash/launcher/chrome_launcher_controller_per_app.cc
|
| +++ b/chrome/browser/ui/ash/launcher/chrome_launcher_controller_per_app.cc
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| @@ -43,6 +43,7 @@
|
| #include "chrome/browser/web_applications/web_app.h"
|
| #include "chrome/common/chrome_notification_types.h"
|
| #include "chrome/common/chrome_switches.h"
|
| +#include "chrome/common/extensions/api/icons/icons_handler.h"
|
| #include "chrome/common/extensions/extension.h"
|
| #include "chrome/common/extensions/extension_resource.h"
|
| #include "chrome/common/pref_names.h"
|
| @@ -1181,7 +1182,7 @@ ash::LauncherID ChromeLauncherControllerPerApp::InsertAppLauncherItem(
|
| ash::LauncherItem item;
|
| item.type = controller->GetLauncherItemType();
|
| item.is_incognito = false;
|
| - item.image = Extension::GetDefaultIcon(true);
|
| + item.image = extensions::IconsInfo::GetDefaultIcon(true); // is app
|
|
|
| WebContents* active_tab = GetLastActiveWebContents(app_id);
|
| if (active_tab) {
|
|
|