| OLD | NEW |
| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 GURL url; | 49 GURL url; |
| 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; |
| 60 int minimum_splash_image_size_in_px; |
| 61 GURL splash_image_url; |
| 59 GURL best_primary_icon_url; | 62 GURL best_primary_icon_url; |
| 60 GURL best_badge_icon_url; | 63 GURL best_badge_icon_url; |
| 61 std::vector<std::string> icon_urls; | 64 std::vector<std::string> icon_urls; |
| 62 }; | 65 }; |
| 63 | 66 |
| 64 #endif // CHROME_BROWSER_ANDROID_SHORTCUT_INFO_H_ | 67 #endif // CHROME_BROWSER_ANDROID_SHORTCUT_INFO_H_ |
| OLD | NEW |