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

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

Issue 99953002: Revert 238143 "Merge 237646 "Ensure that the OSK on Windows 8 sh..." (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1700/src/
Patch Set: Created 7 years 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 648 matching lines...) Expand 10 before | Expand all | Expand 10 after
659 659
660 #if defined(OS_ANDROID) 660 #if defined(OS_ANDROID)
661 // Contains info about whether the current page can be treated as a webapp. 661 // Contains info about whether the current page can be treated as a webapp.
662 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DidRetrieveWebappInformation, 662 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DidRetrieveWebappInformation,
663 bool /* success */, 663 bool /* success */,
664 bool /* is_mobile_webapp_capable */, 664 bool /* is_mobile_webapp_capable */,
665 bool /* is_apple_mobile_webapp_capable */, 665 bool /* is_apple_mobile_webapp_capable */,
666 GURL /* expected_url */) 666 GURL /* expected_url */)
667 #endif // defined(OS_ANDROID) 667 #endif // defined(OS_ANDROID)
668 668
669 // Message sent from renderer to the browser when the element that is focused
670 // has been touched. A bool is passed in this message which indicates if the
671 // node is editable.
672 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_FocusedNodeTouched,
673 bool /* editable */)
674
669 // The currently displayed PDF has an unsupported feature. 675 // The currently displayed PDF has an unsupported feature.
670 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature) 676 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature)
671 677
672 // Brings up SaveAs... dialog to save specified URL. 678 // Brings up SaveAs... dialog to save specified URL.
673 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_PDFSaveURLAs, 679 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_PDFSaveURLAs,
674 GURL /* url */, 680 GURL /* url */,
675 content::Referrer /* referrer */) 681 content::Referrer /* referrer */)
676 682
677 // Updates the content restrictions, i.e. to disable print/copy. 683 // Updates the content restrictions, i.e. to disable print/copy.
678 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_PDFUpdateContentRestrictions, 684 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_PDFUpdateContentRestrictions,
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
772 std::vector<GURL> /* search_urls */, 778 std::vector<GURL> /* search_urls */,
773 GURL /* new_tab_page_url */) 779 GURL /* new_tab_page_url */)
774 780
775 // Tells listeners that a detailed message was reported to the console by 781 // Tells listeners that a detailed message was reported to the console by
776 // WebKit. 782 // WebKit.
777 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, 783 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded,
778 string16 /* message */, 784 string16 /* message */,
779 string16 /* source */, 785 string16 /* source */,
780 extensions::StackTrace /* stack trace */, 786 extensions::StackTrace /* stack trace */,
781 int32 /* severity level */) 787 int32 /* severity level */)
OLDNEW
« no previous file with comments | « chrome/browser/ui/tab_contents/core_tab_helper.cc ('k') | chrome/renderer/chrome_render_view_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698