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

Side by Side Diff: chrome/common/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
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 mojom;
6
7 import "url/mojo/url.mojom";
8
9 interface RapporRecorder {
10 // Records a sample string to a Rappor privacy-preserving metric.
11 // See: https://www.chromium.org/developers/design-documents/rappor
12 RecordRappor(string metric, string sample);
13
14 // Records a domain and registry of a url to a Rappor privacy-preserving
15 // metric. See: https://www.chromium.org/developers/design-documents/rappor
16 RecordRapporURL(string metric, url.mojom.Url url);
17 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698