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