Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 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. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_ANDROID_WEBAPK_WEBAPK_WEB_MANIFEST_CHECKER_H_ | |
| 6 #define CHROME_BROWSER_ANDROID_WEBAPK_WEBAPK_WEB_MANIFEST_CHECKER_H_ | |
| 7 | |
| 8 #include "chrome/browser/installable/installable_logging.h" | |
| 9 | |
| 10 namespace content { | |
| 11 struct Manifest; | |
| 12 } | |
| 13 | |
| 14 // Checks whether the format of the URLs in the Web Manifest is WebAPK | |
| 15 // compatible. Returns NO_ERROR_DETECTED if it is compatible and the error code | |
| 16 // otherwise. | |
| 17 InstallableStatusCode CheckWebManifestUrlsWebApkCompatible( | |
|
dominickn
2016/08/24 03:27:11
As per only having one status code for this method
| |
| 18 const content::Manifest& manifest); | |
| 19 | |
| 20 #endif // CHROME_BROWSER_ANDROID_WEBAPK_WEBAPK_WEB_MANIFEST_CHECKER_H_ | |
| OLD | NEW |