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

Side by Side Diff: content/common/frame_messages.h

Issue 2761153003: PlzNavigate & CSP. Use the SourceLocation in violation reports. (Closed)
Patch Set: Addressed comment @alexmos Created 3 years, 8 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // IPC messages for interacting with frames. 5 // IPC messages for interacting with frames.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after
584 584
585 IPC_STRUCT_TRAITS_BEGIN(content::CSPViolationParams) 585 IPC_STRUCT_TRAITS_BEGIN(content::CSPViolationParams)
586 IPC_STRUCT_TRAITS_MEMBER(directive) 586 IPC_STRUCT_TRAITS_MEMBER(directive)
587 IPC_STRUCT_TRAITS_MEMBER(effective_directive) 587 IPC_STRUCT_TRAITS_MEMBER(effective_directive)
588 IPC_STRUCT_TRAITS_MEMBER(console_message) 588 IPC_STRUCT_TRAITS_MEMBER(console_message)
589 IPC_STRUCT_TRAITS_MEMBER(blocked_url) 589 IPC_STRUCT_TRAITS_MEMBER(blocked_url)
590 IPC_STRUCT_TRAITS_MEMBER(report_endpoints) 590 IPC_STRUCT_TRAITS_MEMBER(report_endpoints)
591 IPC_STRUCT_TRAITS_MEMBER(header) 591 IPC_STRUCT_TRAITS_MEMBER(header)
592 IPC_STRUCT_TRAITS_MEMBER(disposition) 592 IPC_STRUCT_TRAITS_MEMBER(disposition)
593 IPC_STRUCT_TRAITS_MEMBER(after_redirect) 593 IPC_STRUCT_TRAITS_MEMBER(after_redirect)
594 IPC_STRUCT_TRAITS_MEMBER(source_location)
594 IPC_STRUCT_TRAITS_END() 595 IPC_STRUCT_TRAITS_END()
595 596
596 IPC_STRUCT_TRAITS_BEGIN(content::FileChooserFileInfo) 597 IPC_STRUCT_TRAITS_BEGIN(content::FileChooserFileInfo)
597 IPC_STRUCT_TRAITS_MEMBER(file_path) 598 IPC_STRUCT_TRAITS_MEMBER(file_path)
598 IPC_STRUCT_TRAITS_MEMBER(display_name) 599 IPC_STRUCT_TRAITS_MEMBER(display_name)
599 IPC_STRUCT_TRAITS_MEMBER(file_system_url) 600 IPC_STRUCT_TRAITS_MEMBER(file_system_url)
600 IPC_STRUCT_TRAITS_MEMBER(modification_time) 601 IPC_STRUCT_TRAITS_MEMBER(modification_time)
601 IPC_STRUCT_TRAITS_MEMBER(length) 602 IPC_STRUCT_TRAITS_MEMBER(length)
602 IPC_STRUCT_TRAITS_MEMBER(is_directory) 603 IPC_STRUCT_TRAITS_MEMBER(is_directory)
603 IPC_STRUCT_TRAITS_END() 604 IPC_STRUCT_TRAITS_END()
(...skipping 1049 matching lines...) Expand 10 before | Expand all | Expand 10 after
1653 int /* nfr_request_id */, 1654 int /* nfr_request_id */,
1654 float /* distance */) 1655 float /* distance */)
1655 1656
1656 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) 1657 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder)
1657 #endif 1658 #endif
1658 1659
1659 // Adding a new message? Stick to the sort order above: first platform 1660 // Adding a new message? Stick to the sort order above: first platform
1660 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1661 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1661 // platform independent FrameHostMsg, then ifdefs for platform specific 1662 // platform independent FrameHostMsg, then ifdefs for platform specific
1662 // FrameHostMsg. 1663 // FrameHostMsg.
OLDNEW
« no previous file with comments | « content/common/content_security_policy/csp_context_unittest.cc ('k') | content/renderer/content_security_policy_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698