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 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
355 LAUNCHER_PAGE_ON_TRANSITION_CHANGED, | 355 LAUNCHER_PAGE_ON_TRANSITION_CHANGED, |
356 LAUNCHER_PAGE_ON_POP_SUBPAGE, | 356 LAUNCHER_PAGE_ON_POP_SUBPAGE, |
357 DIAL_ON_DEVICE_LIST, | 357 DIAL_ON_DEVICE_LIST, |
358 DIAL_ON_ERROR, | 358 DIAL_ON_ERROR, |
359 CAST_CHANNEL_ON_MESSAGE, | 359 CAST_CHANNEL_ON_MESSAGE, |
360 CAST_CHANNEL_ON_ERROR, | 360 CAST_CHANNEL_ON_ERROR, |
361 SCREENLOCK_PRIVATE_ON_CHANGED, | 361 SCREENLOCK_PRIVATE_ON_CHANGED, |
362 SCREENLOCK_PRIVATE_ON_AUTH_ATTEMPTED, | 362 SCREENLOCK_PRIVATE_ON_AUTH_ATTEMPTED, |
363 TYPES_CHROME_SETTING_ON_CHANGE, | 363 TYPES_CHROME_SETTING_ON_CHANGE, |
364 TYPES_PRIVATE_CHROME_DIRECT_SETTING_ON_CHANGE, | 364 TYPES_PRIVATE_CHROME_DIRECT_SETTING_ON_CHANGE, |
365 WEB_VIEW_INTERNAL_ON_MESSAGE, // TODO(kalman): where are the rest of the | 365 WEB_VIEW_INTERNAL_ON_MESSAGE, |
366 // webview events? | 366 EXTENSION_VIEW_INTERNAL_ON_LOAD_COMMIT, |
| 367 RUNTIME_ON_REQUEST, |
| 368 RUNTIME_ON_REQUEST_EXTERNAL, |
| 369 CHROME_WEB_VIEW_INTERNAL_ON_CONTEXT_MENU_SHOW, |
| 370 WEB_VIEW_INTERNAL_ON_BEFORE_REQUEST, |
| 371 WEB_VIEW_INTERNAL_ON_BEFORE_SEND_HEADERS, |
| 372 WEB_VIEW_INTERNAL_ON_CLOSE, |
| 373 WEB_VIEW_INTERNAL_ON_COMPLETED, |
| 374 WEB_VIEW_INTERNAL_ON_CONSOLE_MESSAGE, |
| 375 WEB_VIEW_INTERNAL_ON_CONTENT_LOAD, |
| 376 WEB_VIEW_INTERNAL_ON_DIALOG, |
| 377 WEB_VIEW_INTERNAL_ON_DROP_LINK, |
| 378 WEB_VIEW_INTERNAL_ON_EXIT, |
| 379 WEB_VIEW_INTERNAL_ON_EXIT_FULLSCREEN, |
| 380 WEB_VIEW_INTERNAL_ON_FIND_REPLY, |
| 381 WEB_VIEW_INTERNAL_ON_FRAME_NAME_CHANGED, |
| 382 WEB_VIEW_INTERNAL_ON_HEADERS_RECEIVED, |
| 383 WEB_VIEW_INTERNAL_ON_LOAD_ABORT, |
| 384 WEB_VIEW_INTERNAL_ON_LOAD_COMMIT, |
| 385 WEB_VIEW_INTERNAL_ON_LOAD_PROGRESS, |
| 386 WEB_VIEW_INTERNAL_ON_LOAD_REDIRECT, |
| 387 WEB_VIEW_INTERNAL_ON_LOAD_START, |
| 388 WEB_VIEW_INTERNAL_ON_LOAD_STOP, |
| 389 WEB_VIEW_INTERNAL_ON_NEW_WINDOW, |
| 390 WEB_VIEW_INTERNAL_ON_PERMISSION_REQUEST, |
| 391 WEB_VIEW_INTERNAL_ON_RESPONSE_STARTED, |
| 392 WEB_VIEW_INTERNAL_ON_RESPONSIVE, |
| 393 WEB_VIEW_INTERNAL_ON_SIZE_CHANGED, |
| 394 WEB_VIEW_INTERNAL_ON_UNRESPONSIVE, |
| 395 WEB_VIEW_INTERNAL_ON_ZOOM_CHANGE, |
| 396 GUEST_VIEW_INTERNAL_ON_RESIZE, |
| 397 |
367 // Last entry: Add new entries above, then run: | 398 // Last entry: Add new entries above, then run: |
368 // python tools/metrics/histograms/update_extension_histograms.py | 399 // python tools/metrics/histograms/update_extension_histograms.py |
369 ENUM_BOUNDARY | 400 ENUM_BOUNDARY |
370 }; | 401 }; |
371 | 402 |
372 } // namespace events | 403 } // namespace events |
373 } // namespace extensions | 404 } // namespace extensions |
374 | 405 |
375 #endif // EXTENSIONS_BROWSER_EXTENSION_EVENT_HISTOGRAM_VALUE_H_ | 406 #endif // EXTENSIONS_BROWSER_EXTENSION_EVENT_HISTOGRAM_VALUE_H_ |
OLD | NEW |