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

Side by Side Diff: content/common/view_messages.h

Issue 7598020: content: use string16 in ViewHostMsg_AddMessageToConsole (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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 | « content/browser/renderer_host/render_view_host.cc ('k') | content/renderer/render_view.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) 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 // IPC messages for page rendering. 5 // IPC messages for page rendering.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "base/process.h" 8 #include "base/process.h"
9 #include "base/shared_memory.h" 9 #include "base/shared_memory.h"
10 #include "content/common/common_param_traits.h" 10 #include "content/common/common_param_traits.h"
(...skipping 1740 matching lines...) Expand 10 before | Expand all | Expand 10 after
1751 IPC_MESSAGE_ROUTED1(ViewHostMsg_ImeCompositionRangeChanged, 1751 IPC_MESSAGE_ROUTED1(ViewHostMsg_ImeCompositionRangeChanged,
1752 ui::Range /* composition range */) 1752 ui::Range /* composition range */)
1753 1753
1754 // Required for cancelling an ongoing input method composition. 1754 // Required for cancelling an ongoing input method composition.
1755 IPC_MESSAGE_ROUTED0(ViewHostMsg_ImeCancelComposition) 1755 IPC_MESSAGE_ROUTED0(ViewHostMsg_ImeCancelComposition)
1756 1756
1757 // WebKit and JavaScript error messages to log to the console 1757 // WebKit and JavaScript error messages to log to the console
1758 // or debugger UI. 1758 // or debugger UI.
1759 IPC_MESSAGE_ROUTED4(ViewHostMsg_AddMessageToConsole, 1759 IPC_MESSAGE_ROUTED4(ViewHostMsg_AddMessageToConsole,
1760 int32, /* log level */ 1760 int32, /* log level */
1761 std::wstring, /* msg */ 1761 string16, /* msg */
1762 int32, /* line number */ 1762 int32, /* line number */
1763 std::wstring /* source id */) 1763 string16 /* source id */)
1764 1764
1765 // Sent by the renderer process to indicate that a plugin instance has 1765 // Sent by the renderer process to indicate that a plugin instance has
1766 // crashed. 1766 // crashed.
1767 IPC_MESSAGE_ROUTED1(ViewHostMsg_CrashedPlugin, 1767 IPC_MESSAGE_ROUTED1(ViewHostMsg_CrashedPlugin,
1768 FilePath /* plugin_path */) 1768 FilePath /* plugin_path */)
1769 1769
1770 // Displays a box to confirm that the user wants to navigate away from the 1770 // Displays a box to confirm that the user wants to navigate away from the
1771 // page. Replies true if yes, false otherwise, the reply string is ignored, 1771 // page. Replies true if yes, false otherwise, the reply string is ignored,
1772 // but is included so that we can use OnJavaScriptMessageBoxClosed. 1772 // but is included so that we can use OnJavaScriptMessageBoxClosed.
1773 IPC_SYNC_MESSAGE_ROUTED2_2(ViewHostMsg_RunBeforeUnloadConfirm, 1773 IPC_SYNC_MESSAGE_ROUTED2_2(ViewHostMsg_RunBeforeUnloadConfirm,
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
2033 int32 /* complete status */) 2033 int32 /* complete status */)
2034 2034
2035 // Request updated information about the client firewall traversal policy. 2035 // Request updated information about the client firewall traversal policy.
2036 // Will result in a ViewMsg_UpdateRemoteAccessClientFirewallTraversal message 2036 // Will result in a ViewMsg_UpdateRemoteAccessClientFirewallTraversal message
2037 // being sent back. 2037 // being sent back.
2038 IPC_MESSAGE_ROUTED0(ViewHostMsg_RequestRemoteAccessClientFirewallTraversal) 2038 IPC_MESSAGE_ROUTED0(ViewHostMsg_RequestRemoteAccessClientFirewallTraversal)
2039 2039
2040 // Notifies the browser of an event occurring in the media pipeline. 2040 // Notifies the browser of an event occurring in the media pipeline.
2041 IPC_MESSAGE_CONTROL1(ViewHostMsg_MediaLogEvent, 2041 IPC_MESSAGE_CONTROL1(ViewHostMsg_MediaLogEvent,
2042 media::MediaLogEvent /* event */) 2042 media::MediaLogEvent /* event */)
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_view_host.cc ('k') | content/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698