Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Side by Side Diff: chrome/browser/android/shortcut_info.h

Issue 2773353002: Make minimum PWA icon size the same accross all device densities
Patch Set: Merge branch 'master' into min_size Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_ANDROID_SHORTCUT_INFO_H_ 5 #ifndef CHROME_BROWSER_ANDROID_SHORTCUT_INFO_H_
6 #define CHROME_BROWSER_ANDROID_SHORTCUT_INFO_H_ 6 #define CHROME_BROWSER_ANDROID_SHORTCUT_INFO_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <vector> 10 #include <vector>
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 GURL scope; 50 GURL scope;
51 base::string16 user_title; 51 base::string16 user_title;
52 base::string16 name; 52 base::string16 name;
53 base::string16 short_name; 53 base::string16 short_name;
54 blink::WebDisplayMode display; 54 blink::WebDisplayMode display;
55 blink::WebScreenOrientationLockType orientation; 55 blink::WebScreenOrientationLockType orientation;
56 Source source; 56 Source source;
57 int64_t theme_color; 57 int64_t theme_color;
58 int64_t background_color; 58 int64_t background_color;
59 int ideal_splash_image_size_in_px; 59 int ideal_splash_image_size_in_px;
60 int minimum_splash_image_size_in_px;
61 GURL splash_image_url; 60 GURL splash_image_url;
62 GURL best_primary_icon_url; 61 GURL best_primary_icon_url;
63 GURL best_badge_icon_url; 62 GURL best_badge_icon_url;
64 std::vector<std::string> icon_urls; 63 std::vector<std::string> icon_urls;
65 }; 64 };
66 65
67 #endif // CHROME_BROWSER_ANDROID_SHORTCUT_INFO_H_ 66 #endif // CHROME_BROWSER_ANDROID_SHORTCUT_INFO_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698