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

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

Issue 2376403003: Convert RapporRecorder to use mojo. (Closed)
Patch Set: Convert RapporRecorder to use mojo. Created 4 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
« no previous file with comments | « chrome/browser/renderer_host/chrome_render_message_filter.cc ('k') | chrome/renderer/BUILD.gn » ('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 <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 619 matching lines...) Expand 10 before | Expand all | Expand 10 after
630 blink::WebAppBannerPromptReply /* reply */, 630 blink::WebAppBannerPromptReply /* reply */,
631 std::string /* referrer */) 631 std::string /* referrer */)
632 632
633 // Tells the browser to restart the app banner display pipeline. 633 // Tells the browser to restart the app banner display pipeline.
634 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_RequestShowAppBanner, 634 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_RequestShowAppBanner,
635 int32_t /* request_id */) 635 int32_t /* request_id */)
636 636
637 // Sent by the renderer to indicate that a fields trial has been activated. 637 // Sent by the renderer to indicate that a fields trial has been activated.
638 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated, 638 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated,
639 std::string /* name */) 639 std::string /* name */)
640
641 // Record a sample string to a Rappor metric.
642 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor,
643 std::string /* metric */,
644 std::string /* sample */)
645
646 // Record a domain and registry of a url to a Rappor metric.
647 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL,
648 std::string /* metric */,
649 GURL /* sample url */)
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/chrome_render_message_filter.cc ('k') | chrome/renderer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698