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..03632cd0ee58a2c7f3f3add590f9e69253c38f55 |
| --- /dev/null |
| +++ b/chrome/renderer/app_categorizer.h |
| @@ -0,0 +1,15 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
| +// 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_ |
| + |
| +class GURL; |
| + |
| +namespace app_categorizer { |
|
sky
2016/05/20 19:21:42
no namespace here (see https://groups.google.com/a
AlexZ
2016/05/20 20:30:54
Done.
|
| +bool IsHangoutsUrl(const GURL& url); |
| +bool IsWhitelistedApp(const GURL& manifest_url, const GURL& app_url); |
| +} |
| + |
| +#endif // CHROME_RENDERER_APP_CATEGORIZER_H_ |