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

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: Addressing misc review 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..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_

Powered by Google App Engine
This is Rietveld 408576698