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

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

Issue 321453003: Mark ChromeViewHostMsg_DetailedConsoleMessageAdded as extensions-only. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix build Created 6 years, 6 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/chrome_renderer.gypi ('k') | chrome/renderer/chrome_content_renderer_client.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) 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 <stdint.h> 6 #include <stdint.h>
7 #include <map> 7 #include <map>
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after
700 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetVoiceSearchSupported, 700 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetVoiceSearchSupported,
701 int /* page_seq_no */, 701 int /* page_seq_no */,
702 bool /* supported */) 702 bool /* supported */)
703 703
704 // Tells the renderer a list of URLs which should be bounced back to the browser 704 // Tells the renderer a list of URLs which should be bounced back to the browser
705 // process so that they can be assigned to an Instant renderer. 705 // process so that they can be assigned to an Instant renderer.
706 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, 706 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs,
707 std::vector<GURL> /* search_urls */, 707 std::vector<GURL> /* search_urls */,
708 GURL /* new_tab_page_url */) 708 GURL /* new_tab_page_url */)
709 709
710 // TODO(thestig) Eventually separate out all the extensions messages.
711 #if defined(ENABLE_EXTENSIONS)
710 // Tells listeners that a detailed message was reported to the console by 712 // Tells listeners that a detailed message was reported to the console by
711 // WebKit. 713 // WebKit.
712 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, 714 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded,
713 base::string16 /* message */, 715 base::string16 /* message */,
714 base::string16 /* source */, 716 base::string16 /* source */,
715 extensions::StackTrace /* stack trace */, 717 extensions::StackTrace /* stack trace */,
716 int32 /* severity level */) 718 int32 /* severity level */)
719 #endif
717 720
718 #if defined(ENABLE_PLUGINS) 721 #if defined(ENABLE_PLUGINS)
719 // Sent by the renderer to check if crash reporting is enabled. 722 // Sent by the renderer to check if crash reporting is enabled.
720 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, 723 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled,
721 bool /* enabled */) 724 bool /* enabled */)
722 #endif 725 #endif
OLDNEW
« no previous file with comments | « chrome/chrome_renderer.gypi ('k') | chrome/renderer/chrome_content_renderer_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698