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

Side by Side Diff: chrome/common/metrics/proto/chrome_user_metrics_extension.proto

Issue 11228038: Linux: change protobuf default option to allow building (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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;
10
11 package metrics; 9 package metrics;
12 10
13 import "histogram_event.proto"; 11 import "histogram_event.proto";
14 import "omnibox_event.proto"; 12 import "omnibox_event.proto";
15 import "profiler_event.proto"; 13 import "profiler_event.proto";
16 import "system_profile.proto"; 14 import "system_profile.proto";
17 import "user_action_event.proto"; 15 import "user_action_event.proto";
18 16
19 // Next tag: 8 17 // Next tag: 8
20 message ChromeUserMetricsExtension { 18 message ChromeUserMetricsExtension {
(...skipping 15 matching lines...) Expand all
36 34
37 // Information about the user's browser and system configuration. 35 // Information about the user's browser and system configuration.
38 optional SystemProfileProto system_profile = 3; 36 optional SystemProfileProto system_profile = 3;
39 37
40 // This message will log one or more of the following event types: 38 // This message will log one or more of the following event types:
41 repeated UserActionEventProto user_action_event = 4; 39 repeated UserActionEventProto user_action_event = 4;
42 repeated OmniboxEventProto omnibox_event = 5; 40 repeated OmniboxEventProto omnibox_event = 5;
43 repeated HistogramEventProto histogram_event = 6; 41 repeated HistogramEventProto histogram_event = 6;
44 repeated ProfilerEventProto profiler_event = 7; 42 repeated ProfilerEventProto profiler_event = 7;
45 } 43 }
OLDNEW
« no previous file with comments | « chrome/common/metrics/proto/chrome_experiments.proto ('k') | chrome/common/metrics/proto/histogram_event.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698