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

Side by Side Diff: components/rappor/public/interfaces/rappor_recorder.mojom

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 | « components/rappor/public/interfaces/OWNERS ('k') | components/rappor/rappor_recorder_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 module rappor.mojom;
6
7 import "url/mojo/url.mojom";
8
9 // Records aggregate, privacy-preserving samples from the renderers.
10 // See: https://www.chromium.org/developers/design-documents/rappor
11 interface RapporRecorder {
12 // Records a sample string to a Rappor privacy-preserving metric.
13 // See: https://www.chromium.org/developers/design-documents/rappor
14 RecordRappor(string metric, string sample);
15
16 // Records a domain and registry of a url to a Rappor privacy-preserving
17 // metric. See: https://www.chromium.org/developers/design-documents/rappor
18 RecordRapporURL(string metric, url.mojom.Url url);
19 };
OLDNEW
« no previous file with comments | « components/rappor/public/interfaces/OWNERS ('k') | components/rappor/rappor_recorder_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698