| Index: chrome/browser/web_applications/web_app.cc
|
| diff --git a/chrome/browser/web_applications/web_app.cc b/chrome/browser/web_applications/web_app.cc
|
| index 135b6f4824ba30d0db978ceb0aa0788580e453dd..1da6c7694e28f0db3a43a3a2890aff7afa99c4fe 100644
|
| --- a/chrome/browser/web_applications/web_app.cc
|
| +++ b/chrome/browser/web_applications/web_app.cc
|
| @@ -33,6 +33,7 @@
|
| #include "ui/gfx/image/image.h"
|
| #include "ui/gfx/image/image_family.h"
|
| #include "ui/gfx/image/image_skia.h"
|
| +#include "url/url_constants.h"
|
|
|
| #if defined(OS_WIN)
|
| #include "ui/gfx/icon_util.h"
|
| @@ -439,8 +440,8 @@ bool IsValidUrl(const GURL& url) {
|
| content::kFileScheme,
|
| content::kFileSystemScheme,
|
| content::kFtpScheme,
|
| - content::kHttpScheme,
|
| - content::kHttpsScheme,
|
| + url::kHttpScheme,
|
| + url::kHttpsScheme,
|
| extensions::kExtensionScheme,
|
| };
|
|
|
|
|