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

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

Issue 2761153003: PlzNavigate & CSP. Use the SourceLocation in violation reports. (Closed)
Patch Set: Nit. Created 3 years, 9 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 574 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 585
586 IPC_STRUCT_TRAITS_BEGIN(content::CSPViolationParams) 586 IPC_STRUCT_TRAITS_BEGIN(content::CSPViolationParams)
587 IPC_STRUCT_TRAITS_MEMBER(directive) 587 IPC_STRUCT_TRAITS_MEMBER(directive)
588 IPC_STRUCT_TRAITS_MEMBER(effective_directive) 588 IPC_STRUCT_TRAITS_MEMBER(effective_directive)
589 IPC_STRUCT_TRAITS_MEMBER(console_message) 589 IPC_STRUCT_TRAITS_MEMBER(console_message)
590 IPC_STRUCT_TRAITS_MEMBER(blocked_url) 590 IPC_STRUCT_TRAITS_MEMBER(blocked_url)
591 IPC_STRUCT_TRAITS_MEMBER(report_endpoints) 591 IPC_STRUCT_TRAITS_MEMBER(report_endpoints)
592 IPC_STRUCT_TRAITS_MEMBER(header) 592 IPC_STRUCT_TRAITS_MEMBER(header)
593 IPC_STRUCT_TRAITS_MEMBER(disposition) 593 IPC_STRUCT_TRAITS_MEMBER(disposition)
594 IPC_STRUCT_TRAITS_MEMBER(after_redirect) 594 IPC_STRUCT_TRAITS_MEMBER(after_redirect)
595 IPC_STRUCT_TRAITS_MEMBER(source_location)
595 IPC_STRUCT_TRAITS_END() 596 IPC_STRUCT_TRAITS_END()
596 597
597 IPC_STRUCT_TRAITS_BEGIN(content::FileChooserFileInfo) 598 IPC_STRUCT_TRAITS_BEGIN(content::FileChooserFileInfo)
598 IPC_STRUCT_TRAITS_MEMBER(file_path) 599 IPC_STRUCT_TRAITS_MEMBER(file_path)
599 IPC_STRUCT_TRAITS_MEMBER(display_name) 600 IPC_STRUCT_TRAITS_MEMBER(display_name)
600 IPC_STRUCT_TRAITS_MEMBER(file_system_url) 601 IPC_STRUCT_TRAITS_MEMBER(file_system_url)
601 IPC_STRUCT_TRAITS_MEMBER(modification_time) 602 IPC_STRUCT_TRAITS_MEMBER(modification_time)
602 IPC_STRUCT_TRAITS_MEMBER(length) 603 IPC_STRUCT_TRAITS_MEMBER(length)
603 IPC_STRUCT_TRAITS_MEMBER(is_directory) 604 IPC_STRUCT_TRAITS_MEMBER(is_directory)
604 IPC_STRUCT_TRAITS_END() 605 IPC_STRUCT_TRAITS_END()
(...skipping 1040 matching lines...) Expand 10 before | Expand all | Expand 10 after
1645 int /* nfr_request_id */, 1646 int /* nfr_request_id */,
1646 float /* distance */) 1647 float /* distance */)
1647 1648
1648 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) 1649 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder)
1649 #endif 1650 #endif
1650 1651
1651 // Adding a new message? Stick to the sort order above: first platform 1652 // Adding a new message? Stick to the sort order above: first platform
1652 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1653 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1653 // platform independent FrameHostMsg, then ifdefs for platform specific 1654 // platform independent FrameHostMsg, then ifdefs for platform specific
1654 // FrameHostMsg. 1655 // FrameHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698