Chromium Code Reviews| Index: chrome/renderer/app_categorizer.h |
| diff --git a/chrome/renderer/app_categorizer.h b/chrome/renderer/app_categorizer.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..35589bc8287b267658624e2b61940a2c9766bd40 |
| --- /dev/null |
| +++ b/chrome/renderer/app_categorizer.h |
| @@ -0,0 +1,15 @@ |
| +// Copyright (c) 2016 The Chromium Authors. All rights reserved. |
|
sky
2016/05/19 15:43:10
no (c)
AlexZ
2016/05/19 16:18:52
Done.
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_RENDERER_APP_CATEGORIZER_H_ |
| +#define CHROME_RENDERER_APP_CATEGORIZER_H_ |
| + |
| +#include "url/gurl.h" |
|
sky
2016/05/19 15:43:10
forward declare GURL.
AlexZ
2016/05/19 16:18:52
Done.
|
| + |
| +namespace app_categorizer { |
| +bool IsHangoutsUrl(const GURL& url); |
| +bool IsWhitelistedApp(const GURL& manifest_url, const GURL& app_url); |
| +} |
| + |
| +#endif // CHROME_RENDERER_APP_CATEGORIZER_H_ |