| Index: chrome/browser/android/shortcut_info.h
|
| diff --git a/chrome/browser/android/shortcut_info.h b/chrome/browser/android/shortcut_info.h
|
| index 85716d6a88c8a0bad823f97dd1504c4f81e94b80..fe6f7136bad878aa9a08a4698041cbdbf59a9d02 100644
|
| --- a/chrome/browser/android/shortcut_info.h
|
| +++ b/chrome/browser/android/shortcut_info.h
|
| @@ -7,6 +7,8 @@
|
|
|
| #include <stdint.h>
|
|
|
| +#include <vector>
|
| +
|
| #include "base/strings/string16.h"
|
| #include "content/public/common/manifest.h"
|
| #include "third_party/WebKit/public/platform/modules/screen_orientation/WebScreenOrientationLockType.h"
|
| @@ -51,7 +53,8 @@ struct ShortcutInfo {
|
| Source source;
|
| int64_t theme_color;
|
| int64_t background_color;
|
| - GURL icon_url;
|
| + GURL best_icon_url;
|
| + std::vector<std::string> icon_urls;
|
| };
|
|
|
| #endif // CHROME_BROWSER_ANDROID_SHORTCUT_INFO_H_
|
|
|