| 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 NETWORKING_PRIVATE_ON_THIRD_PARTY_VPN_PROVIDERS_CHANGED, |
| 398 // Last entry: Add new entries above, then run: | 398 // Last entry: Add new entries above, then run: |
| 399 // python tools/metrics/histograms/update_extension_histograms.py | 399 // python tools/metrics/histograms/update_extension_histograms.py |
| 400 ENUM_BOUNDARY | 400 ENUM_BOUNDARY |
| 401 }; | 401 }; |
| 402 | 402 |
| 403 } // namespace events | 403 } // namespace events |
| 404 } // namespace extensions | 404 } // namespace extensions |
| 405 | 405 |
| 406 #endif // EXTENSIONS_BROWSER_EXTENSION_EVENT_HISTOGRAM_VALUE_H_ | 406 #endif // EXTENSIONS_BROWSER_EXTENSION_EVENT_HISTOGRAM_VALUE_H_ |
| OLD | NEW |