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

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

Issue 1396293003: Use RenderFrameHost::AddMessageToConsole for app banner debug logging. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
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 <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after
428 428
429 // Tells the renderer that a banner has been accepted. 429 // Tells the renderer that a banner has been accepted.
430 IPC_MESSAGE_ROUTED2(ChromeViewMsg_AppBannerAccepted, 430 IPC_MESSAGE_ROUTED2(ChromeViewMsg_AppBannerAccepted,
431 int32_t /* request_id */, 431 int32_t /* request_id */,
432 std::string /* platform */) 432 std::string /* platform */)
433 433
434 // Tells the renderer that a banner has been dismissed. 434 // Tells the renderer that a banner has been dismissed.
435 IPC_MESSAGE_ROUTED1(ChromeViewMsg_AppBannerDismissed, 435 IPC_MESSAGE_ROUTED1(ChromeViewMsg_AppBannerDismissed,
436 int32_t /* request_id */) 436 int32_t /* request_id */)
437 437
438 // Asks the renderer to log a debug message to console regarding an
439 // app banner.
440 IPC_MESSAGE_ROUTED1(ChromeViewMsg_AppBannerDebugMessageRequest,
441 std::string /* message */)
442
443 // Notification that the page has an OpenSearch description document 438 // Notification that the page has an OpenSearch description document
444 // associated with it. 439 // associated with it.
445 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageHasOSDD, 440 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageHasOSDD,
446 GURL /* page_url */, 441 GURL /* page_url */,
447 GURL /* osdd_url */, 442 GURL /* osdd_url */,
448 search_provider::OSDDType) 443 search_provider::OSDDType)
449 444
450 // Find out if the given url's security origin is installed as a search 445 // Find out if the given url's security origin is installed as a search
451 // provider. 446 // provider.
452 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetSearchProviderInstallState, 447 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetSearchProviderInstallState,
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
576 571
577 // Record a sample string to a Rappor metric. 572 // Record a sample string to a Rappor metric.
578 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, 573 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor,
579 std::string /* metric */, 574 std::string /* metric */,
580 std::string /* sample */) 575 std::string /* sample */)
581 576
582 // Record a domain and registry of a url to a Rappor metric. 577 // Record a domain and registry of a url to a Rappor metric.
583 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, 578 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL,
584 std::string /* metric */, 579 std::string /* metric */,
585 GURL /* sample url */) 580 GURL /* sample url */)
OLDNEW
« no previous file with comments | « chrome/browser/banners/app_banner_debug_log.cc ('k') | chrome/renderer/chrome_render_frame_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698