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

Unified Diff: chrome/common/extensions/api/metricsPrivate.json

Issue 10272021: Files generated by the JSON schema compiler are named incorrectly (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Minor changes Created 8 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/api/metricsPrivate.json
diff --git a/chrome/common/extensions/api/metricsPrivate.json b/chrome/common/extensions/api/metricsPrivate.json
deleted file mode 100644
index 01135634e83caedc7a596d3368c7df56440871ce..0000000000000000000000000000000000000000
--- a/chrome/common/extensions/api/metricsPrivate.json
+++ /dev/null
@@ -1,111 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-[
- {
- "namespace": "metricsPrivate",
- "nodoc": true,
- "types": [
- {
- "id": "MetricType",
- "type": "object",
- "description": "Describes the type of metric that is to be collected.",
- "properties": {
- "metricName": {"type": "string", "description": "A unique name within the extension for the metric."},
- "type": {
- "type": "string",
- "enum": ["histogram-log", "histogram-linear"],
- "description": "The type of metric, such as 'histogram-log' or 'histogram-linear'."
- },
- "min": {"type": "integer", "description": "The minimum sample value to be recoded. Must be greater than zero."},
- "max": {"type": "integer", "description": "The maximum sample value to be recoded."},
- "buckets": {"type": "integer", "description": "The number of buckets to use when separating the recorded values."}
- }
- }
- ],
- "functions": [
- {
- "name": "recordUserAction",
- "type": "function",
- "description": "Records an action performed by the user.",
- "parameters": [
- {"name": "name", "type": "string"}
- ]
- },
- {
- "name": "recordPercentage",
- "type": "function",
- "description": "Records a percentage value from 1 to 100.",
- "parameters": [
- {"name": "metricName", "type": "string"},
- {"name": "value", "type": "integer"}
- ]
- },
- {
- "name": "recordCount",
- "type": "function",
- "description": "Records a value than can range from 1 to 1,000,000.",
- "parameters": [
- {"name": "metricName", "type": "string"},
- {"name": "value", "type": "integer"}
- ]
- },
- {
- "name": "recordSmallCount",
- "type": "function",
- "description": "Records a value than can range from 1 to 100.",
- "parameters": [
- {"name": "metricName", "type": "string"},
- {"name": "value", "type": "integer"}
- ]
- },
- {
- "name": "recordMediumCount",
- "type": "function",
- "description": "Records a value than can range from 1 to 10,000.",
- "parameters": [
- {"name": "metricName", "type": "string"},
- {"name": "value", "type": "integer"}
- ]
- },
- {
- "name": "recordTime",
- "type": "function",
- "description": "Records an elapsed time of no more than 10 seconds. The sample value is specified in milliseconds.",
- "parameters": [
- {"name": "metricName", "type": "string"},
- {"name": "value", "type": "integer"}
- ]
- },
- {
- "name": "recordMediumTime",
- "type": "function",
- "description": "Records an elapsed time of no more than 3 minutes. The sample value is specified in milliseconds.",
- "parameters": [
- {"name": "metricName", "type": "string"},
- {"name": "value", "type": "integer"}
- ]
- },
- {
- "name": "recordLongTime",
- "type": "function",
- "description": "Records an elapsed time of no more than 1 hour. The sample value is specified in milliseconds.",
- "parameters": [
- {"name": "metricName", "type": "string"},
- {"name": "value", "type": "integer"}
- ]
- },
- {
- "name": "recordValue",
- "type": "function",
- "description": "Adds a value to the given metric.",
- "parameters": [
- {"name": "metric", "$ref": "MetricType"},
- {"name": "value", "type": "integer"}
- ]
- }
- ],
- "events": []
- }
-]
« no previous file with comments | « chrome/common/extensions/api/media_player_private.json ('k') | chrome/common/extensions/api/metrics_private.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698