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

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

Issue 48113021: Expose WebGL extension WEBGL_debug_renderer_info to Google domains (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Adding tests Created 7 years, 1 month 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 | Annotate | Revision Log
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 <map> 6 #include <map>
7 #include <set> 7 #include <set>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 616 matching lines...) Expand 10 before | Expand all | Expand 10 after
627 627
628 // Sent by the renderer to check if a URL has permission to trigger a clipboard 628 // Sent by the renderer to check if a URL has permission to trigger a clipboard
629 // read/write operation from the DOM. 629 // read/write operation from the DOM.
630 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardRead, 630 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardRead,
631 GURL /* origin */, 631 GURL /* origin */,
632 bool /* allowed */) 632 bool /* allowed */)
633 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardWrite, 633 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardWrite,
634 GURL /* origin */, 634 GURL /* origin */,
635 bool /* allowed */) 635 bool /* allowed */)
636 636
637 // Sent by the renderer to check if a URL has permission to access WebGL
638 // extension WEBGL_debug_renderer_info.
639 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_IsWebGLDebugRendererInfoAllowed,
640 GURL /* origin */,
641 bool /* allowed */)
642
637 // Sent when the renderer was prevented from displaying insecure content in 643 // Sent when the renderer was prevented from displaying insecure content in
638 // a secure page by a security policy. The page may appear incomplete. 644 // a secure page by a security policy. The page may appear incomplete.
639 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockDisplayingInsecureContent) 645 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockDisplayingInsecureContent)
640 646
641 // Sent when the renderer was prevented from running insecure content in 647 // Sent when the renderer was prevented from running insecure content in
642 // a secure origin by a security policy. The page may appear incomplete. 648 // a secure origin by a security policy. The page may appear incomplete.
643 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockRunningInsecureContent) 649 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockRunningInsecureContent)
644 650
645 #if defined(OS_ANDROID) 651 #if defined(OS_ANDROID)
646 // Contains info about whether the current page can be treated as a webapp. 652 // Contains info about whether the current page can be treated as a webapp.
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
759 std::vector<GURL> /* search_urls */, 765 std::vector<GURL> /* search_urls */,
760 GURL /* new_tab_page_url */) 766 GURL /* new_tab_page_url */)
761 767
762 // Tells listeners that a detailed message was reported to the console by 768 // Tells listeners that a detailed message was reported to the console by
763 // WebKit. 769 // WebKit.
764 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, 770 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded,
765 string16 /* message */, 771 string16 /* message */,
766 string16 /* source */, 772 string16 /* source */,
767 extensions::StackTrace /* stack trace */, 773 extensions::StackTrace /* stack trace */,
768 int32 /* severity level */) 774 int32 /* severity level */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698