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

Unified Diff: chrome/common/web_application_info.cc

Issue 105873009: Use apple-touch-icons for streamlined hosted apps. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix nit Created 6 years, 11 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/web_application_info.h ('k') | chrome/renderer/web_apps.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/web_application_info.cc
diff --git a/chrome/common/web_application_info.cc b/chrome/common/web_application_info.cc
index 29a22c8c3acf6648ed4b335ebd597b80addc2775..a2a3e9b5262964be4e77f03a38080868f5ef9830 100644
--- a/chrome/common/web_application_info.cc
+++ b/chrome/common/web_application_info.cc
@@ -4,9 +4,14 @@
#include "chrome/common/web_application_info.h"
-WebApplicationInfo::WebApplicationInfo() {
- is_bookmark_app = false;
- is_offline_enabled = false;
+WebApplicationInfo::IconInfo::IconInfo() : width(0), height(0) {
+}
+
+WebApplicationInfo::IconInfo::~IconInfo() {
+}
+
+WebApplicationInfo::WebApplicationInfo()
+ : is_bookmark_app(false), is_offline_enabled(false) {
}
WebApplicationInfo::~WebApplicationInfo() {
« no previous file with comments | « chrome/common/web_application_info.h ('k') | chrome/renderer/web_apps.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698