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

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

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

Powered by Google App Engine
This is Rietveld 408576698