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

Side by Side Diff: ios/chrome/browser/physical_web/physical_web_initial_state_recorder.mm

Issue 2886933003: Use stricter type checking in UMA_HISTOGRAM_ENUMERATION (Closed)
Patch Set: nocompile test Created 3 years, 6 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 "ios/chrome/browser/physical_web/physical_web_initial_state_recorder.h" 5 #import "ios/chrome/browser/physical_web/physical_web_initial_state_recorder.h"
6 6
7 #import <CoreBluetooth/CoreBluetooth.h> 7 #import <CoreBluetooth/CoreBluetooth.h>
8 #import <CoreLocation/CoreLocation.h> 8 #import <CoreLocation/CoreLocation.h>
9 9
10 #include "base/mac/scoped_nsobject.h" 10 #include "base/mac/scoped_nsobject.h"
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 state |= LOCATION_SERVICES_FLAG; 156 state |= LOCATION_SERVICES_FLAG;
157 } 157 }
158 if (locationAuthorized) { 158 if (locationAuthorized) {
159 state |= LOCATION_AUTHORIZED_FLAG; 159 state |= LOCATION_AUTHORIZED_FLAG;
160 } 160 }
161 if (bluetoothEnabled) { 161 if (bluetoothEnabled) {
162 state |= BLUETOOTH_FLAG; 162 state |= BLUETOOTH_FLAG;
163 } 163 }
164 164
165 DCHECK(state < PHYSICAL_WEB_INITIAL_STATE_COUNT); 165 DCHECK(state < PHYSICAL_WEB_INITIAL_STATE_COUNT);
166 UMA_HISTOGRAM_ENUMERATION("PhysicalWeb.InitialState.IosChrome", state, 166 UMA_HISTOGRAM_EXACT_LINEAR(
167 PHYSICAL_WEB_INITIAL_STATE_COUNT); 167 "PhysicalWeb.InitialState.IosChrome", state,
168 static_cast<int>(PHYSICAL_WEB_INITIAL_STATE_COUNT));
Alexei Svitkine (slow) 2017/05/31 20:22:24 Can this use PhysicalWebInitialState instead? Sinc
wychen 2017/07/14 23:18:44 Used PhysicalWebInitialStateIosChrome.
168 } 169 }
169 170
170 @end 171 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698