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

Side by Side Diff: components/metrics/proto/chrome_user_metrics_extension.proto

Issue 1036953002: metrics: Deprecate "perf_data" in UMA proto (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: deletion -> deprecation Created 5 years, 9 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 // Protocol buffer for Chrome UMA (User Metrics Analysis). 5 // Protocol buffer for Chrome UMA (User Metrics Analysis).
6 6
7 syntax = "proto2"; 7 syntax = "proto2";
8 8
9 option optimize_for = LITE_RUNTIME; 9 option optimize_for = LITE_RUNTIME;
10 10
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 53
54 // Information about the user's browser and system configuration. 54 // Information about the user's browser and system configuration.
55 optional SystemProfileProto system_profile = 3; 55 optional SystemProfileProto system_profile = 3;
56 56
57 // This message will log one or more of the following event types: 57 // This message will log one or more of the following event types:
58 repeated UserActionEventProto user_action_event = 4; 58 repeated UserActionEventProto user_action_event = 4;
59 repeated OmniboxEventProto omnibox_event = 5; 59 repeated OmniboxEventProto omnibox_event = 5;
60 repeated HistogramEventProto histogram_event = 6; 60 repeated HistogramEventProto histogram_event = 6;
61 repeated ProfilerEventProto profiler_event = 7; 61 repeated ProfilerEventProto profiler_event = 7;
62 62
63 // TODO(sque): Deprecate this field and use |sampled_profile| instead. 63 // This field is no longer used. Use |sampled_profile| instead.
64 repeated PerfDataProto perf_data = 8; 64 repeated PerfDataProto perf_data = 8 [deprecated=true];
65 65
66 // A list of all collected sample-based profiles since the last UMA upload. 66 // A list of all collected sample-based profiles since the last UMA upload.
67 repeated SampledProfile sampled_profile = 11; 67 repeated SampledProfile sampled_profile = 11;
68 68
69 // Additional data related with Cast-enabled devices. 69 // Additional data related with Cast-enabled devices.
70 optional CastLogsProto cast_logs = 12; 70 optional CastLogsProto cast_logs = 12;
71 } 71 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698