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 #ifndef EXTENSIONS_BROWSER_EXTENSION_EVENT_HISTOGRAM_VALUE_H_ | 5 #ifndef EXTENSIONS_BROWSER_EXTENSION_EVENT_HISTOGRAM_VALUE_H_ |
6 #define EXTENSIONS_BROWSER_EXTENSION_EVENT_HISTOGRAM_VALUE_H_ | 6 #define EXTENSIONS_BROWSER_EXTENSION_EVENT_HISTOGRAM_VALUE_H_ |
7 | 7 |
8 namespace extensions { | 8 namespace extensions { |
9 namespace events { | 9 namespace events { |
10 | 10 |
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
387 WEB_VIEW_INTERNAL_ON_LOAD_START, | 387 WEB_VIEW_INTERNAL_ON_LOAD_START, |
388 WEB_VIEW_INTERNAL_ON_LOAD_STOP, | 388 WEB_VIEW_INTERNAL_ON_LOAD_STOP, |
389 WEB_VIEW_INTERNAL_ON_NEW_WINDOW, | 389 WEB_VIEW_INTERNAL_ON_NEW_WINDOW, |
390 WEB_VIEW_INTERNAL_ON_PERMISSION_REQUEST, | 390 WEB_VIEW_INTERNAL_ON_PERMISSION_REQUEST, |
391 WEB_VIEW_INTERNAL_ON_RESPONSE_STARTED, | 391 WEB_VIEW_INTERNAL_ON_RESPONSE_STARTED, |
392 WEB_VIEW_INTERNAL_ON_RESPONSIVE, | 392 WEB_VIEW_INTERNAL_ON_RESPONSIVE, |
393 WEB_VIEW_INTERNAL_ON_SIZE_CHANGED, | 393 WEB_VIEW_INTERNAL_ON_SIZE_CHANGED, |
394 WEB_VIEW_INTERNAL_ON_UNRESPONSIVE, | 394 WEB_VIEW_INTERNAL_ON_UNRESPONSIVE, |
395 WEB_VIEW_INTERNAL_ON_ZOOM_CHANGE, | 395 WEB_VIEW_INTERNAL_ON_ZOOM_CHANGE, |
396 GUEST_VIEW_INTERNAL_ON_RESIZE, | 396 GUEST_VIEW_INTERNAL_ON_RESIZE, |
397 | 397 CAST_DEVICES_PRIVATE_ON_UPDATE_DEVICES_REQUESTED, |
| 398 CAST_DEVICES_PRIVATE_ON_START_CAST, |
| 399 CAST_DEVICES_PRIVATE_ON_STOP_CAST, |
398 // Last entry: Add new entries above, then run: | 400 // Last entry: Add new entries above, then run: |
399 // python tools/metrics/histograms/update_extension_histograms.py | 401 // python tools/metrics/histograms/update_extension_histograms.py |
400 ENUM_BOUNDARY | 402 ENUM_BOUNDARY |
401 }; | 403 }; |
402 | 404 |
403 } // namespace events | 405 } // namespace events |
404 } // namespace extensions | 406 } // namespace extensions |
405 | 407 |
406 #endif // EXTENSIONS_BROWSER_EXTENSION_EVENT_HISTOGRAM_VALUE_H_ | 408 #endif // EXTENSIONS_BROWSER_EXTENSION_EVENT_HISTOGRAM_VALUE_H_ |
OLD | NEW |