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

Unified Diff: chrome/common/web_application_info.h

Issue 568823003: Merge Android RetrieveWebappInformation and Extensions GetApplicationInfo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@manifest_manager_content
Patch Set: Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/render_messages.h ('k') | chrome/common/web_application_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..114d53e7b8e9df98a068344c89a32e5e03f53156 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 {
+ MOBILE_CAPABLE_UNSPECIFIED,
+ MOBILE_CAPABLE,
+ MOBILE_CAPABLE_APPLE
+ };
+
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_
« no previous file with comments | « chrome/common/render_messages.h ('k') | chrome/common/web_application_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698