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

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

Issue 2167773002: Preparation for removal of sending content::SSLStatus to the renderer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comment Created 4 years, 5 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 1460 matching lines...) Expand 10 before | Expand all | Expand 10 after
1471 // Sent when the renderer displays insecure content in a secure origin. 1471 // Sent when the renderer displays insecure content in a secure origin.
1472 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidDisplayInsecureContent) 1472 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidDisplayInsecureContent)
1473 1473
1474 // Sent when the renderer runs insecure content in a secure origin. 1474 // Sent when the renderer runs insecure content in a secure origin.
1475 IPC_MESSAGE_ROUTED2(FrameHostMsg_DidRunInsecureContent, 1475 IPC_MESSAGE_ROUTED2(FrameHostMsg_DidRunInsecureContent,
1476 GURL /* security_origin */, 1476 GURL /* security_origin */,
1477 GURL /* target URL */) 1477 GURL /* target URL */)
1478 1478
1479 // Sent when the renderer displays content that was loaded with 1479 // Sent when the renderer displays content that was loaded with
1480 // certificate errors. 1480 // certificate errors.
1481 IPC_MESSAGE_ROUTED2(FrameHostMsg_DidDisplayContentWithCertificateErrors, 1481 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidDisplayContentWithCertificateErrors,
1482 GURL /* resource url */, 1482 GURL /* resource url */)
1483 std::string /* serialized security info */)
1484 1483
1485 // Sent when the renderer runs content that was loaded with certificate 1484 // Sent when the renderer runs content that was loaded with certificate
1486 // errors. 1485 // errors.
1487 IPC_MESSAGE_ROUTED2(FrameHostMsg_DidRunContentWithCertificateErrors, 1486 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidRunContentWithCertificateErrors,
1488 GURL /* resource url */, 1487 GURL /* resource url */)
1489 std::string /* serialized security info */)
1490 1488
1491 // Response to FrameMsg_GetSavableResourceLinks. 1489 // Response to FrameMsg_GetSavableResourceLinks.
1492 IPC_MESSAGE_ROUTED3(FrameHostMsg_SavableResourceLinksResponse, 1490 IPC_MESSAGE_ROUTED3(FrameHostMsg_SavableResourceLinksResponse,
1493 std::vector<GURL> /* savable resource links */, 1491 std::vector<GURL> /* savable resource links */,
1494 content::Referrer /* referrer for all the links above */, 1492 content::Referrer /* referrer for all the links above */,
1495 std::vector<content::SavableSubframe> /* subframes */) 1493 std::vector<content::SavableSubframe> /* subframes */)
1496 1494
1497 // Response to FrameMsg_GetSavableResourceLinks in case the frame contains 1495 // Response to FrameMsg_GetSavableResourceLinks in case the frame contains
1498 // non-savable content (i.e. from a non-savable scheme) or if there were 1496 // non-savable content (i.e. from a non-savable scheme) or if there were
1499 // errors gathering the links. 1497 // errors gathering the links.
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
1578 // nearest find result in the sending frame. 1576 // nearest find result in the sending frame.
1579 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, 1577 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply,
1580 int /* nfr_request_id */, 1578 int /* nfr_request_id */,
1581 float /* distance */) 1579 float /* distance */)
1582 #endif 1580 #endif
1583 1581
1584 // Adding a new message? Stick to the sort order above: first platform 1582 // Adding a new message? Stick to the sort order above: first platform
1585 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1583 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1586 // platform independent FrameHostMsg, then ifdefs for platform specific 1584 // platform independent FrameHostMsg, then ifdefs for platform specific
1587 // FrameHostMsg. 1585 // FrameHostMsg.
OLDNEW
« no previous file with comments | « content/browser/web_contents/web_contents_impl.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698