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

Unified Diff: content/browser/frame_host/csp_context_impl.h

Issue 2655463006: PlzNavigate: Enforce 'frame-src' CSP on the browser. (Closed)
Patch Set: Fix tests. Created 3 years, 10 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: content/browser/frame_host/csp_context_impl.h
diff --git a/content/browser/frame_host/csp_context_impl.h b/content/browser/frame_host/csp_context_impl.h
new file mode 100644
index 0000000000000000000000000000000000000000..2fff17a16261222ad6bfa5213b47a4c5bd320176
--- /dev/null
+++ b/content/browser/frame_host/csp_context_impl.h
@@ -0,0 +1,30 @@
+// Copyright 2017 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 CONTENT_BROWSER_FRAME_HOST_CSP_CONTEXT_H_
+#define CONTENT_BROWSER_FRAME_HOST_CSP_CONTEXT_H_
nasko 2017/02/11 00:01:23 Missing _IMPL_ part in the include guard.
arthursonzogni 2017/02/13 16:33:20 Done.
+
+#include "content/common/content_security_policy/csp_context.h"
+
+namespace content {
+
+class FrameTreeNode;
+
+class CSPContextImpl : public CSPContext {
+ public:
+ CSPContextImpl(FrameTreeNode* frame_tree_node);
+ void LogToConsole(const std::string& message) override;
+
+ // Inform the renderer process that a navigation has been blocked by a content
+ // security policy.
+ void ReportViolation(const CSPViolationParams& violation_params) override;
alexmos 2017/02/10 22:59:53 Just a heads-up that lukasza@ worked on some plumb
arthursonzogni 2017/02/13 16:33:20 Thanks! I don't know yet if a race could happens,
+
+ private:
+ bool SchemeShouldBypass(const base::StringPiece& scheme) override;
alexmos 2017/02/10 22:59:53 Can this be static? Doesn't look like it needs fr
arthursonzogni 2017/02/13 16:33:20 Yes, it doesn't need frame_tree_node_, but it's a
alexmos 2017/02/14 06:57:19 Acknowledged.
+
+ FrameTreeNode* frame_tree_node_; // Never nullptr.
nasko 2017/02/11 00:01:23 nit: Comments like that usually go above the membe
arthursonzogni 2017/02/13 16:33:20 Done.
+};
+} // namespace content
nasko 2017/02/11 00:01:23 nit: Empty line before end of namespace.
arthursonzogni 2017/02/13 16:33:20 Done.
+
+#endif // CONTENT_BROWSER_FRAME_HOST_CSP_CONTEXT_H_ */
nasko 2017/02/11 00:01:23 Why is there "*/" at the end?
arthursonzogni 2017/02/13 16:33:20 Oops, vim-snipmate + wrong conversion to the googl

Powered by Google App Engine
This is Rietveld 408576698