Chromium Code Reviews| Index: chrome/common/web_application_info.h |
| diff --git a/chrome/common/web_application_info.h b/chrome/common/web_application_info.h |
| index 1c5c103971174f7542849248ee3496d5492f7ed8..7e03e2754cd85f904ccd9fb424803d6cb18cc1df 100644 |
| --- a/chrome/common/web_application_info.h |
| +++ b/chrome/common/web_application_info.h |
| @@ -25,6 +25,12 @@ struct WebApplicationInfo { |
| SkBitmap data; |
| }; |
| + enum MobileCapable { |
| + Unspecified, |
|
sky
2014/09/15 16:11:02
See style guide for proper names. And I prefer pre
mlamouri (slow - plz ping)
2014/09/15 16:24:17
Done.
|
| + Yes, |
| + AppleOnly |
| + }; |
| + |
| WebApplicationInfo(); |
| ~WebApplicationInfo(); |
| @@ -39,6 +45,10 @@ struct WebApplicationInfo { |
| // Set of available icons. |
| std::vector<IconInfo> icons; |
| + |
| + // Whether the page is marked as mobile-capable, including apple specific meta |
| + // tag. |
| + MobileCapable mobile_capable; |
| }; |
| #endif // CHROME_COMMON_WEB_APPLICATION_INFO_H_ |