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

Side by Side Diff: components/metrics/proto/ukm/report.proto

Issue 2567263003: Basic UkmService implementation (Closed)
Patch Set: Rebase Created 3 years, 10 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 2017 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 syntax = "proto2";
6
7 package ukm;
8
9 option optimize_for = LITE_RUNTIME;
10
11 import "ukm/source.proto";
12 import "system_profile.proto";
13
14 // This is the message type sent from Chrome to the UKM collector.
15 // Next tag: 4
16 message Report {
17 // A unique identifier for a Chrome install. This ID should be used only
18 // in UKM reports, and not linked to any other data sources.
19 optional fixed64 client_id = 1;
20
21 // Information about the user's browser and system configuration.
22 optional metrics.SystemProfileProto system_profile = 2;
23
24 // A list of the top-level navigations that data was collected for.
25 repeated Source sources = 3;
26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698