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

Side by Side Diff: extensions/browser/extension_function_histogram_value.h

Issue 1968083004: Implement the private API for quick unlock. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Migrate browser tests to unit tests Created 4 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 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 #ifndef EXTENSIONS_BROWSER_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ 5 #ifndef EXTENSIONS_BROWSER_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_
6 #define EXTENSIONS_BROWSER_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ 6 #define EXTENSIONS_BROWSER_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_
7 7
8 namespace extensions { 8 namespace extensions {
9 namespace functions { 9 namespace functions {
10 10
(...skipping 1176 matching lines...) Expand 10 before | Expand all | Expand 10 after
1187 BLUETOOTHLOWENERGY_UNREGISTERSERVICE, 1187 BLUETOOTHLOWENERGY_UNREGISTERSERVICE,
1188 BLUETOOTHLOWENERGY_SENDREQUESTRESPONSE, 1188 BLUETOOTHLOWENERGY_SENDREQUESTRESPONSE,
1189 BLUETOOTHLOWENERGY_NOTIFYCHARACTERISTICVALUECHANGED, 1189 BLUETOOTHLOWENERGY_NOTIFYCHARACTERISTICVALUECHANGED,
1190 BLUETOOTHLOWENERGY_REMOVESERVICE, 1190 BLUETOOTHLOWENERGY_REMOVESERVICE,
1191 AUTOFILLPRIVATE_GETADDRESSLIST, 1191 AUTOFILLPRIVATE_GETADDRESSLIST,
1192 AUTOFILLPRIVATE_GETCREDITCARDLIST, 1192 AUTOFILLPRIVATE_GETCREDITCARDLIST,
1193 SYSTEM_DISPLAY_OVERSCANCALIBRATIONSTART, 1193 SYSTEM_DISPLAY_OVERSCANCALIBRATIONSTART,
1194 SYSTEM_DISPLAY_OVERSCANCALIBRATIONADJUST, 1194 SYSTEM_DISPLAY_OVERSCANCALIBRATIONADJUST,
1195 SYSTEM_DISPLAY_OVERSCANCALIBRATIONRESET, 1195 SYSTEM_DISPLAY_OVERSCANCALIBRATIONRESET,
1196 SYSTEM_DISPLAY_OVERSCANCALIBRATIONCOMPLETE, 1196 SYSTEM_DISPLAY_OVERSCANCALIBRATIONCOMPLETE,
1197 QUICKUNLOCKPRIVATE_CHECKPASSWORD,
Devlin 2016/06/06 16:35:01 Does this method exist?
jdufault 2016/06/08 18:39:10 Oops - that was an old method. Removed.
1198 QUICKUNLOCKPRIVATE_SETMODES,
1199 QUICKUNLOCKPRIVATE_GETACTIVEMODES,
1200 QUICKUNLOCKPRIVATE_GETAVAILABLEMODES,
1197 // Last entry: Add new entries above, then run: 1201 // Last entry: Add new entries above, then run:
1198 // python tools/metrics/histograms/update_extension_histograms.py 1202 // python tools/metrics/histograms/update_extension_histograms.py
1199 ENUM_BOUNDARY 1203 ENUM_BOUNDARY
1200 }; 1204 };
1201 1205
1202 } // namespace functions 1206 } // namespace functions
1203 } // namespace extensions 1207 } // namespace extensions
1204 1208
1205 #endif // EXTENSIONS_BROWSER_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ 1209 #endif // EXTENSIONS_BROWSER_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698