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

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

Issue 6289009: [Mac] Implement the system dictionary popup by implementing NSTextInput methods. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include <map> 5 #include <map>
6 #include <set> 6 #include <set>
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 1619 matching lines...) Expand 10 before | Expand all | Expand 10 after
1630 IPC_SYNC_MESSAGE_ROUTED1_1(ViewHostMsg_GetScreenInfo, 1630 IPC_SYNC_MESSAGE_ROUTED1_1(ViewHostMsg_GetScreenInfo,
1631 gfx::NativeViewId /* view */, 1631 gfx::NativeViewId /* view */,
1632 WebKit::WebScreenInfo /* results */) 1632 WebKit::WebScreenInfo /* results */)
1633 1633
1634 // Send the tooltip text for the current mouse position to the browser. 1634 // Send the tooltip text for the current mouse position to the browser.
1635 IPC_MESSAGE_ROUTED2(ViewHostMsg_SetTooltipText, 1635 IPC_MESSAGE_ROUTED2(ViewHostMsg_SetTooltipText,
1636 std::wstring /* tooltip text string */, 1636 std::wstring /* tooltip text string */,
1637 WebKit::WebTextDirection /* text direction hint */) 1637 WebKit::WebTextDirection /* text direction hint */)
1638 1638
1639 // Notification that the text selection has changed. 1639 // Notification that the text selection has changed.
1640 IPC_MESSAGE_ROUTED1(ViewHostMsg_SelectionChanged, 1640 IPC_MESSAGE_ROUTED3(ViewHostMsg_SelectionChanged,
1641 std::string /* currently selected text */) 1641 std::string /* currently selected text */,
1642 int /* selection range start */,
jeremy 2011/02/21 09:19:47 Again, should these be unsigned?
1643 int /* selection range end */)
1642 1644
1643 // Asks the browser to display the file chooser. The result is returned in a 1645 // Asks the browser to display the file chooser. The result is returned in a
1644 // ViewHost_RunFileChooserResponse message. 1646 // ViewHost_RunFileChooserResponse message.
1645 IPC_MESSAGE_ROUTED1(ViewHostMsg_RunFileChooser, 1647 IPC_MESSAGE_ROUTED1(ViewHostMsg_RunFileChooser,
1646 ViewHostMsg_RunFileChooser_Params) 1648 ViewHostMsg_RunFileChooser_Params)
1647 1649
1648 // Used to tell the parent the user started dragging in the content area. The 1650 // Used to tell the parent the user started dragging in the content area. The
1649 // WebDropData struct contains contextual information about the pieces of the 1651 // WebDropData struct contains contextual information about the pieces of the
1650 // page the user dragged. The parent uses this notification to initiate a 1652 // page the user dragged. The parent uses this notification to initiate a
1651 // drag session at the OS level. 1653 // drag session at the OS level.
(...skipping 881 matching lines...) Expand 10 before | Expand all | Expand 10 after
2533 // The currently displayed PDF has an unsupported feature. 2535 // The currently displayed PDF has an unsupported feature.
2534 IPC_MESSAGE_ROUTED0(ViewHostMsg_PDFHasUnsupportedFeature) 2536 IPC_MESSAGE_ROUTED0(ViewHostMsg_PDFHasUnsupportedFeature)
2535 2537
2536 // JavaScript related messages ----------------------------------------------- 2538 // JavaScript related messages -----------------------------------------------
2537 2539
2538 // Notify the JavaScript engine in the render to change its parameters 2540 // Notify the JavaScript engine in the render to change its parameters
2539 // while performing stress testing. 2541 // while performing stress testing.
2540 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, 2542 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl,
2541 int /* cmd */, 2543 int /* cmd */,
2542 int /* param */) 2544 int /* param */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698