| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #import "chrome/browser/ui/cocoa/applescript/metrics_applescript.h" | 5 #import "chrome/browser/ui/cocoa/applescript/metrics_applescript.h" |
| 6 | 6 |
| 7 #include "base/metrics/histogram.h" | 7 #include "base/metrics/histogram_macros.h" |
| 8 | 8 |
| 9 namespace AppleScript { | 9 namespace AppleScript { |
| 10 | 10 |
| 11 void LogAppleScriptUMA(AppleScriptCommand sample) { | 11 void LogAppleScriptUMA(AppleScriptCommand sample) { |
| 12 UMA_HISTOGRAM_ENUMERATION("AppleScript.CommandEvent", sample, | 12 UMA_HISTOGRAM_ENUMERATION("AppleScript.CommandEvent", sample, |
| 13 APPLESCRIPT_COMMAND_EVENTS_COUNT); | 13 APPLESCRIPT_COMMAND_EVENTS_COUNT); |
| 14 } | 14 } |
| 15 | 15 |
| 16 } // namespace | 16 } // namespace |
| OLD | NEW |