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

Unified Diff: chrome/renderer/app_categorizer.h

Issue 1974413003: Whitelist hangouts.google.com further to allow video effects plugin access. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Swapping comments Created 4 years, 7 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
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_

Powered by Google App Engine
This is Rietveld 408576698