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

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
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_

Powered by Google App Engine
This is Rietveld 408576698