| Index: chrome/common/web_application_info.h
|
| diff --git a/chrome/common/web_application_info.h b/chrome/common/web_application_info.h
|
| index 08b9c84b64bfd667a42e0a96590222e8bddf6ce8..1c5c103971174f7542849248ee3496d5492f7ed8 100644
|
| --- a/chrome/common/web_application_info.h
|
| +++ b/chrome/common/web_application_info.h
|
| @@ -28,18 +28,6 @@ struct WebApplicationInfo {
|
| WebApplicationInfo();
|
| ~WebApplicationInfo();
|
|
|
| - // URL to a manifest that defines the application. If specified, all other
|
| - // attributes are derived from this manifest, and the manifest is the unique
|
| - // ID of the application.
|
| - GURL manifest_url;
|
| -
|
| - // Setting indicating this application is artificially constructed. If set,
|
| - // the application was created from bookmark-style data (title, url, possibly
|
| - // icon), and not from an official manifest file. In that case, the app_url
|
| - // can be checked for the later creation of an official manifest instead of
|
| - // reloading the manifest_url.
|
| - bool is_bookmark_app;
|
| -
|
| // Title of the application.
|
| base::string16 title;
|
|
|
| @@ -51,20 +39,6 @@ struct WebApplicationInfo {
|
|
|
| // Set of available icons.
|
| std::vector<IconInfo> icons;
|
| -
|
| - // The permissions the app requests. Only supported with manifest-based apps.
|
| - std::vector<std::string> permissions;
|
| -
|
| - // Set of URLs that comprise the app. Only supported with manifest-based apps.
|
| - // All these must be of the same origin as manifest_url.
|
| - std::vector<GURL> urls;
|
| -
|
| - // The type of launch container to use with the app. Currently supported
|
| - // values are 'tab' and 'panel'. Only supported with manifest-based apps.
|
| - std::string launch_container;
|
| -
|
| - // This indicates if the app is functional in offline mode or not.
|
| - bool is_offline_enabled;
|
| };
|
|
|
| #endif // CHROME_COMMON_WEB_APPLICATION_INFO_H_
|
|
|