| OLD | NEW |
| 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 #include "chrome/browser/extensions/proxy_overridden_bubble_delegate.h" | 5 #include "chrome/browser/extensions/proxy_overridden_bubble_delegate.h" |
| 6 | 6 |
| 7 #include "base/metrics/histogram.h" | 7 #include "base/metrics/histogram.h" |
| 8 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
| 9 #include "chrome/browser/extensions/extension_service.h" | 9 #include "chrome/browser/extensions/extension_service.h" |
| 10 #include "chrome/browser/extensions/settings_api_helpers.h" | 10 #include "chrome/browser/extensions/settings_api_helpers.h" |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 UMA_HISTOGRAM_COUNTS_100("ProxyOverriddenBubble.ExtensionCount", count); | 136 UMA_HISTOGRAM_COUNTS_100("ProxyOverriddenBubble.ExtensionCount", count); |
| 137 } | 137 } |
| 138 | 138 |
| 139 void ProxyOverriddenBubbleDelegate::LogAction( | 139 void ProxyOverriddenBubbleDelegate::LogAction( |
| 140 ExtensionMessageBubbleController::BubbleAction action) { | 140 ExtensionMessageBubbleController::BubbleAction action) { |
| 141 UMA_HISTOGRAM_ENUMERATION("ProxyOverriddenBubble.UserSelection", | 141 UMA_HISTOGRAM_ENUMERATION("ProxyOverriddenBubble.UserSelection", |
| 142 action, | 142 action, |
| 143 ExtensionMessageBubbleController::ACTION_BOUNDARY); | 143 ExtensionMessageBubbleController::ACTION_BOUNDARY); |
| 144 } | 144 } |
| 145 | 145 |
| 146 const char* ProxyOverriddenBubbleDelegate::GetKey() { |
| 147 return "ProxyOverriddenBubbleDelegate"; |
| 148 } |
| 149 |
| 146 } // namespace extensions | 150 } // namespace extensions |
| OLD | NEW |