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

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

Issue 57032: Implement HTML selects as native Cocoa controls for Chrome (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 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
« no previous file with comments | « chrome/common/render_messages.h ('k') | chrome/renderer/render_widget.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 // This header is meant to be included in multiple passes, hence no traditional 5 // This header is meant to be included in multiple passes, hence no traditional
6 // header guard. 6 // header guard.
7 // See ipc_message_macros.h for explanation of the macros and passes. 7 // See ipc_message_macros.h for explanation of the macros and passes.
8 8
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 1319 matching lines...) Expand 10 before | Expand all | Expand 10 after
1330 // returned. The handle can be used for sending messages to the extension. 1330 // returned. The handle can be used for sending messages to the extension.
1331 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_OpenChannelToExtension, 1331 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_OpenChannelToExtension,
1332 std::string /* extension_id */, 1332 std::string /* extension_id */,
1333 int /* port_id */) 1333 int /* port_id */)
1334 1334
1335 // Send a message to an extension process. The handle is the value returned 1335 // Send a message to an extension process. The handle is the value returned
1336 // by ViewHostMsg_OpenChannelToExtension. 1336 // by ViewHostMsg_OpenChannelToExtension.
1337 IPC_MESSAGE_CONTROL2(ViewHostMsg_ExtensionPostMessage, 1337 IPC_MESSAGE_CONTROL2(ViewHostMsg_ExtensionPostMessage,
1338 int /* port_id */, 1338 int /* port_id */,
1339 std::string /* message */) 1339 std::string /* message */)
1340
1341 // Message to show a popup menu using native cocoa controls (Mac only).
1342 IPC_MESSAGE_ROUTED1(ViewHostMsg_ShowPopup,
1343 ViewHostMsg_ShowPopup_Params)
1344
1340 IPC_END_MESSAGES(ViewHost) 1345 IPC_END_MESSAGES(ViewHost)
OLDNEW
« no previous file with comments | « chrome/common/render_messages.h ('k') | chrome/renderer/render_widget.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698