1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_COMMON_WEB_APPLICATION_INFO_H_
6 #define CHROME_COMMON_WEB_APPLICATION_INFO_H_
11 #include "base/strings/string16.h"
12 #include "third_party/skia/include/core/SkBitmap.h"
13 #include "ui/gfx/size.h"
16 // Structure used when installing a web page as an app.
17 struct WebApplicationInfo
{
29 ~WebApplicationInfo();
31 // Title of the application.
34 // Description of the application.
35 base::string16 description
;
37 // The launch URL for the app.
40 // Set of available icons.
41 std::vector
<IconInfo
> icons
;
44 #endif // CHROME_COMMON_WEB_APPLICATION_INFO_H_