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

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

Issue 23513055: Populate canPlayType to renderer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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 | 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 630 matching lines...) Expand 10 before | Expand all | Expand 10 after
641 // Sent when the renderer was prevented from running insecure content in 641 // Sent when the renderer was prevented from running insecure content in
642 // a secure origin by a security policy. The page may appear incomplete. 642 // a secure origin by a security policy. The page may appear incomplete.
643 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockRunningInsecureContent) 643 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockRunningInsecureContent)
644 644
645 #if defined(OS_ANDROID) 645 #if defined(OS_ANDROID)
646 // Contains info about whether the current page can be treated as a webapp. 646 // Contains info about whether the current page can be treated as a webapp.
647 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_DidRetrieveWebappInformation, 647 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_DidRetrieveWebappInformation,
648 bool /* success */, 648 bool /* success */,
649 bool /* is_webapp_capable */, 649 bool /* is_webapp_capable */,
650 GURL /* expected_url */) 650 GURL /* expected_url */)
651
jam 2013/09/17 20:26:02 ?
651 #endif // defined(OS_ANDROID) 652 #endif // defined(OS_ANDROID)
652 653
653 // Message sent from renderer to the browser when the element that is focused 654 // Message sent from renderer to the browser when the element that is focused
654 // has been touched. A bool is passed in this message which indicates if the 655 // has been touched. A bool is passed in this message which indicates if the
655 // node is editable. 656 // node is editable.
656 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_FocusedNodeTouched, 657 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_FocusedNodeTouched,
657 bool /* editable */) 658 bool /* editable */)
658 659
659 // The currently displayed PDF has an unsupported feature. 660 // The currently displayed PDF has an unsupported feature.
660 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature) 661 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature)
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
747 int /* page_id */, 748 int /* page_id */,
748 bool /* supported */) 749 bool /* supported */)
749 750
750 // Tells listeners that a detailed message was reported to the console by 751 // Tells listeners that a detailed message was reported to the console by
751 // WebKit. 752 // WebKit.
752 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, 753 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded,
753 string16 /* message */, 754 string16 /* message */,
754 string16 /* source */, 755 string16 /* source */,
755 extensions::StackTrace /* stack trace */, 756 extensions::StackTrace /* stack trace */,
756 int32 /* severity level */) 757 int32 /* severity level */)
OLDNEW
« no previous file with comments | « chrome/common/media/encrypted_media_messages_android.h ('k') | chrome/renderer/chrome_content_renderer_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698