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

Side by Side Diff: chrome/common/render_messages.h

Issue 826553003: Remove dead IPC message ChromeViewHostMsg_DidBlockRunningInsecureContent. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Delete moar code Created 5 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // Multiply-included file, no traditional include guard. 5 // Multiply-included file, no traditional include guard.
6 #include <stdint.h> 6 #include <stdint.h>
7 #include <map> 7 #include <map>
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after
567 567
568 // Message sent from the renderer to the browser to notify it of a 568 // Message sent from the renderer to the browser to notify it of a
569 // window.print() call which should cancel the prerender. The message is sent 569 // window.print() call which should cancel the prerender. The message is sent
570 // only when the renderer is prerendering. 570 // only when the renderer is prerendering.
571 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_CancelPrerenderForPrinting) 571 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_CancelPrerenderForPrinting)
572 572
573 // Sent when the renderer was prevented from displaying insecure content in 573 // Sent when the renderer was prevented from displaying insecure content in
574 // a secure page by a security policy. The page may appear incomplete. 574 // a secure page by a security policy. The page may appear incomplete.
575 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockDisplayingInsecureContent) 575 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockDisplayingInsecureContent)
576 576
577 // Sent when the renderer was prevented from running insecure content in
578 // a secure origin by a security policy. The page may appear incomplete.
579 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockRunningInsecureContent)
580
581 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_DidGetWebApplicationInfo, 577 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_DidGetWebApplicationInfo,
582 WebApplicationInfo) 578 WebApplicationInfo)
583 579
584 #if defined(OS_ANDROID) 580 #if defined(OS_ANDROID)
585 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DidRetrieveMetaTagContent, 581 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DidRetrieveMetaTagContent,
586 bool /* success */, 582 bool /* success */,
587 std::string /* tag_name */, 583 std::string /* tag_name */,
588 std::string /* tag_content */, 584 std::string /* tag_content */,
589 GURL /* expected_url */) 585 GURL /* expected_url */)
590 #endif // defined(OS_ANDROID) 586 #endif // defined(OS_ANDROID)
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
670 666
671 #if defined(ENABLE_PLUGINS) 667 #if defined(ENABLE_PLUGINS)
672 // Sent by the renderer to check if crash reporting is enabled. 668 // Sent by the renderer to check if crash reporting is enabled.
673 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, 669 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled,
674 bool /* enabled */) 670 bool /* enabled */)
675 #endif 671 #endif
676 672
677 // Sent by the renderer to indicate that a fields trial has been activated. 673 // Sent by the renderer to indicate that a fields trial has been activated.
678 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated, 674 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated,
679 std::string /* name */) 675 std::string /* name */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698