Refactoring : Move AuthAttempt and Authenticators to chromeos/login
[chromium-blink-merge.git] / chrome / browser / chrome_notification_types.h
blobeddec14051a48e281a4b31b03c3b30772d823fc5
1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_CHROME_NOTIFICATION_TYPES_H_
6 #define CHROME_BROWSER_CHROME_NOTIFICATION_TYPES_H_
8 #include "build/build_config.h"
9 #include "content/public/browser/notification_types.h"
11 namespace chrome {
13 enum NotificationType {
14 NOTIFICATION_CHROME_START = content::NOTIFICATION_CONTENT_END,
16 // Browser-window ----------------------------------------------------------
18 // This message is sent after a window has been opened. The source is a
19 // Source<Browser> containing the affected Browser. No details are
20 // expected.
21 NOTIFICATION_BROWSER_OPENED = NOTIFICATION_CHROME_START,
23 // This message is sent soon after BROWSER_OPENED, and indicates that
24 // the Browser's |window_| is now non-NULL. The source is a Source<Browser>
25 // containing the affected Browser. No details are expected.
26 NOTIFICATION_BROWSER_WINDOW_READY,
28 // This message is sent when a browser is closing. The source is a
29 // Source<Browser> containing the affected Browser. No details are expected.
30 // This is sent prior to BROWSER_CLOSED, and may be sent more than once for a
31 // particular browser.
32 NOTIFICATION_BROWSER_CLOSING,
34 // This message is sent after a window has been closed. The source is a
35 // Source<Browser> containing the affected Browser. No details are exptected.
36 NOTIFICATION_BROWSER_CLOSED,
38 // This message is sent when closing a browser has been cancelled, either by
39 // the user cancelling a beforeunload dialog, or IsClosingPermitted()
40 // disallowing closing. This notification implies that no BROWSER_CLOSING or
41 // BROWSER_CLOSED notification will be sent.
42 // The source is a Source<Browser> containing the affected browser. No details
43 // are expected.
44 NOTIFICATION_BROWSER_CLOSE_CANCELLED,
46 // Indicates that a top window has been closed. The source is the HWND
47 // that was closed, no details are expected.
48 NOTIFICATION_WINDOW_CLOSED,
50 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID)
51 // On Linux maximize can be an asynchronous operation. This notification
52 // indicates that the window has been maximized. The source is
53 // a Source<BrowserWindow> containing the BrowserWindow that was maximized.
54 // No details are expected.
55 NOTIFICATION_BROWSER_WINDOW_MAXIMIZED,
56 #endif
58 // Sent when the language (English, French...) for a page has been detected.
59 // The details Details<std::string> contain the ISO 639-1 language code and
60 // the source is Source<WebContents>.
61 NOTIFICATION_TAB_LANGUAGE_DETERMINED,
63 // Sent when a page has been translated. The source is the tab for that page
64 // (Source<WebContents>) and the details are the language the page was
65 // originally in and the language it was translated to
66 // (std::pair<std::string, std::string>).
67 NOTIFICATION_PAGE_TRANSLATED,
69 // The user has changed the browser theme. The source is a
70 // Source<ThemeService>. There are no details.
71 NOTIFICATION_BROWSER_THEME_CHANGED,
73 #if defined(USE_AURA)
74 // The user has changed the fling curve configuration.
75 // Source<GesturePrefsObserver>. There are no details.
76 NOTIFICATION_BROWSER_FLING_CURVE_PARAMETERS_CHANGED,
77 #endif // defined(USE_AURA)
79 // Sent when the renderer returns focus to the browser, as part of focus
80 // traversal. The source is the browser, there are no details.
81 NOTIFICATION_FOCUS_RETURNED_TO_BROWSER,
83 // A new tab is created from an existing tab to serve as a target of a
84 // navigation that is about to happen. The source will be a Source<Profile>
85 // corresponding to the profile in which the new tab will live. Details in
86 // the form of a RetargetingDetails object are provided.
87 NOTIFICATION_RETARGETING,
89 // Application-wide ----------------------------------------------------------
91 // This message is sent when the application is terminating (the last
92 // browser window has shutdown as part of an explicit user-initiated exit,
93 // or the user closed the last browser window on Windows/Linux and there are
94 // no BackgroundContents keeping the browser running). No source or details
95 // are passed.
96 NOTIFICATION_APP_TERMINATING,
98 #if defined(OS_MACOSX)
99 // This notification is sent when the app has no key window, such as when
100 // all windows are closed but the app is still active. No source or details
101 // are provided.
102 NOTIFICATION_NO_KEY_WINDOW,
103 #endif
105 // This is sent when the user has chosen to exit the app, but before any
106 // browsers have closed. This is sent if the user chooses to exit (via exit
107 // menu item or keyboard shortcut) or to restart the process (such as in flags
108 // page), not if Chrome exits by some other means (such as the user closing
109 // the last window). No source or details are passed.
111 // Note that receiving this notification does not necessarily mean the process
112 // will exit because the shutdown process can be cancelled by an unload
113 // handler. Use APP_TERMINATING for such needs.
114 NOTIFICATION_CLOSE_ALL_BROWSERS_REQUEST,
116 // Application-modal dialogs -----------------------------------------------
118 // Sent after an application-modal dialog has been shown. The source
119 // is the dialog.
120 NOTIFICATION_APP_MODAL_DIALOG_SHOWN,
122 // This message is sent when a new InfoBar has been added to an
123 // InfoBarService. The source is a Source<InfoBarService> with a pointer to
124 // the InfoBarService the InfoBar was added to. The details is a
125 // Details<InfoBar::AddedDetails>.
126 NOTIFICATION_TAB_CONTENTS_INFOBAR_ADDED,
128 // This message is sent when an InfoBar is about to be removed from an
129 // InfoBarService. The source is a Source<InfoBarService> with a pointer to
130 // the InfoBarService the InfoBar was removed from. The details is a
131 // Details<InfoBar::RemovedDetails>.
132 NOTIFICATION_TAB_CONTENTS_INFOBAR_REMOVED,
134 // Used to fire notifications about how long various events took to
135 // complete. E.g., this is used to get more fine grained timings from the
136 // new tab page. The source is a WebContents and the details is a
137 // MetricEventDurationDetails.
138 NOTIFICATION_METRIC_EVENT_DURATION,
140 // This notification is sent when extensions::TabHelper::SetExtensionApp is
141 // invoked. The source is the extensions::TabHelper SetExtensionApp was
142 // invoked on.
143 NOTIFICATION_TAB_CONTENTS_APPLICATION_EXTENSION_CHANGED,
145 // Tabs --------------------------------------------------------------------
147 // Sent when a tab is added to a WebContentsDelegate. The source is the
148 // WebContentsDelegate and the details is the added WebContents.
149 NOTIFICATION_TAB_ADDED,
151 // This notification is sent after a tab has been appended to the tab_strip.
152 // The source is a Source<WebContents> of the tab being added. There
153 // are no details.
154 NOTIFICATION_TAB_PARENTED,
156 // This message is sent before a tab has been closed. The source is a
157 // Source<NavigationController> with a pointer to the controller for the
158 // closed tab. No details are expected.
160 // See also content::NOTIFICATION_WEB_CONTENTS_DESTROYED, which is sent when
161 // the WebContents containing the NavigationController is destroyed.
162 NOTIFICATION_TAB_CLOSING,
164 // Stuff inside the tabs ---------------------------------------------------
166 // This notification is sent when the result of a find-in-page search is
167 // available with the browser process. The source is a Source<WebContents>.
168 // Details encompass a FindNotificationDetail object that tells whether the
169 // match was found or not found.
170 NOTIFICATION_FIND_RESULT_AVAILABLE,
172 // BackgroundContents ------------------------------------------------------
174 // A new background contents was opened by script. The source is the parent
175 // profile and the details are BackgroundContentsOpenedDetails.
176 NOTIFICATION_BACKGROUND_CONTENTS_OPENED,
178 // The background contents navigated to a new location. The source is the
179 // parent Profile, and the details are the BackgroundContents that was
180 // navigated.
181 NOTIFICATION_BACKGROUND_CONTENTS_NAVIGATED,
183 // The background contents were closed by someone invoking window.close()
184 // or the parent application was uninstalled.
185 // The source is the parent profile, and the details are the
186 // BackgroundContents.
187 NOTIFICATION_BACKGROUND_CONTENTS_CLOSED,
189 // The background contents is being deleted. The source is the
190 // parent Profile, and the details are the BackgroundContents being deleted.
191 NOTIFICATION_BACKGROUND_CONTENTS_DELETED,
193 // The background contents has crashed. The source is the parent Profile,
194 // and the details are the BackgroundContents.
195 NOTIFICATION_BACKGROUND_CONTENTS_TERMINATED,
197 // The background contents associated with a hosted app has changed (either
198 // a new background contents has been created, or an existing background
199 // contents has closed). The source is the parent Profile, and the details
200 // are the BackgroundContentsService.
201 NOTIFICATION_BACKGROUND_CONTENTS_SERVICE_CHANGED,
203 // Chrome has entered/exited background mode. The source is the
204 // BackgroundModeManager and the details are a boolean value which is set to
205 // true if Chrome is now in background mode.
206 NOTIFICATION_BACKGROUND_MODE_CHANGED,
208 // This is sent when a login prompt is shown. The source is the
209 // Source<NavigationController> for the tab in which the prompt is shown.
210 // Details are a LoginNotificationDetails which provide the LoginHandler
211 // that should be given authentication.
212 NOTIFICATION_AUTH_NEEDED,
214 // This is sent when authentication credentials have been supplied (either
215 // by the user or by an automation service), but before we've actually
216 // received another response from the server. The source is the
217 // Source<NavigationController> for the tab in which the prompt was shown.
218 // Details are an AuthSuppliedLoginNotificationDetails which provide the
219 // LoginHandler that should be given authentication as well as the supplied
220 // username and password.
221 NOTIFICATION_AUTH_SUPPLIED,
223 // This is sent when an authentication request has been dismissed without
224 // supplying credentials (either by the user or by an automation service).
225 // The source is the Source<NavigationController> for the tab in which the
226 // prompt was shown. Details are a LoginNotificationDetails which provide
227 // the LoginHandler that should be cancelled.
228 NOTIFICATION_AUTH_CANCELLED,
230 // History -----------------------------------------------------------------
232 // Sent when a history service has finished loading. The source is the
233 // profile that the history service belongs to, and the details is the
234 // HistoryService.
235 NOTIFICATION_HISTORY_LOADED,
237 // Sent when a URL has been added or modified. This is used by the in-memory
238 // URL database and the InMemoryURLIndex (both used by autocomplete) to track
239 // changes to the main history system.
241 // The source is the profile owning the history service that changed, and
242 // the details is history::URLsModifiedDetails that lists the modified or
243 // added URLs.
244 NOTIFICATION_HISTORY_URLS_MODIFIED,
246 // Sent when the user visits a URL.
248 // The source is the profile owning the history service that changed, and
249 // the details is history::URLVisitedDetails.
250 NOTIFICATION_HISTORY_URL_VISITED,
252 // Sent when one or more URLs are deleted.
254 // The source is the profile owning the history service that changed, and
255 // the details is history::URLsDeletedDetails that lists the deleted URLs.
256 NOTIFICATION_HISTORY_URLS_DELETED,
258 // Sent when a keyword search term is updated. The source is the Profile and
259 // the details is history::KeywordSearchUpdatedDetails.
260 NOTIFICATION_HISTORY_KEYWORD_SEARCH_TERM_UPDATED,
262 // Sent when a keyword search term is deleted. The source is the Profile and
263 // the details is history::KeywordSearchDeletedDetails.
264 NOTIFICATION_HISTORY_KEYWORD_SEARCH_TERM_DELETED,
266 // Sent by history when the favicon of a URL changes. The source is the
267 // profile, and the details is FaviconChangedDetails (see
268 // chrome/browser/favicon/favicon_changed_details.h).
269 NOTIFICATION_FAVICON_CHANGED,
271 // Sent by FaviconTabHelper when a tab's favicon has been successfully
272 // updated. The details are a bool indicating whether the
273 // NavigationEntry's favicon URL has changed since the previous
274 // NOTIFICATION_FAVICON_UPDATED notification. The details are true if
275 // there was no previous NOTIFICATION_FAVICON_UPDATED notification for the
276 // current NavigationEntry.
277 NOTIFICATION_FAVICON_UPDATED,
279 // Profiles -----------------------------------------------------------------
281 // Sent after a Profile has been created. This notification is sent both for
282 // normal and OTR profiles.
283 // The details are none and the source is the new profile.
284 NOTIFICATION_PROFILE_CREATED,
286 // Sent after a Profile has been added to ProfileManager.
287 // The details are none and the source is the new profile.
288 NOTIFICATION_PROFILE_ADDED,
290 // Sent early in the process of destroying a Profile, at the time a user
291 // initiates the deletion of a profile versus the much later time when the
292 // profile object is actually destroyed (use NOTIFICATION_PROFILE_DESTROYED).
293 // The details are none and the source is a Profile*.
294 NOTIFICATION_PROFILE_DESTRUCTION_STARTED,
296 // Sent before a Profile is destroyed. This notification is sent both for
297 // normal and OTR profiles.
298 // The details are none and the source is a Profile*.
299 NOTIFICATION_PROFILE_DESTROYED,
301 // Sent after the URLRequestContextGetter for a Profile has been initialized.
302 // The details are none and the source is a Profile*.
303 NOTIFICATION_PROFILE_URL_REQUEST_CONTEXT_GETTER_INITIALIZED,
305 // TopSites ----------------------------------------------------------------
307 // Sent by TopSites when it finishes loading. The source is the profile the
308 // details the TopSites.
309 NOTIFICATION_TOP_SITES_LOADED,
311 // Sent by TopSites when the either one of the most visited urls changed, or
312 // one of the images changes. The source is the TopSites, the details not
313 // used.
314 NOTIFICATION_TOP_SITES_CHANGED,
316 // Task Manager ------------------------------------------------------------
318 // Sent when a renderer process is notified of new v8 heap statistics. The
319 // source is the ID of the renderer process, and the details are a
320 // V8HeapStatsDetails object.
321 NOTIFICATION_RENDERER_V8_HEAP_STATS_COMPUTED,
323 // Non-history storage services --------------------------------------------
325 // The state of a web resource has been changed. A resource may have been
326 // added, removed, or altered. Source is WebResourceService, and the
327 // details are NoDetails.
328 NOTIFICATION_PROMO_RESOURCE_STATE_CHANGED,
330 // A safe browsing database update completed. Source is the
331 // SafeBrowsingService and the details are a bool indicating whether the
332 // update was successful.
333 NOTIFICATION_SAFE_BROWSING_UPDATE_COMPLETE,
335 // Autocomplete ------------------------------------------------------------
337 // Sent by the autocomplete controller when done. The source is the
338 // AutocompleteController, the details not used.
339 NOTIFICATION_AUTOCOMPLETE_CONTROLLER_RESULT_READY,
341 // This is sent when an item of the Omnibox popup is selected. The source
342 // is the profile.
343 NOTIFICATION_OMNIBOX_OPENED_URL,
345 // This is sent from Instant when the omnibox focus state changes.
346 NOTIFICATION_OMNIBOX_FOCUS_CHANGED,
348 // Printing ----------------------------------------------------------------
350 // Notification from PrintJob that an event occurred. It can be that a page
351 // finished printing or that the print job failed. Details is
352 // PrintJob::EventDetails. Source is a PrintJob.
353 NOTIFICATION_PRINT_JOB_EVENT,
355 // Sent when a PrintJob has been released.
356 // Source is the WebContents that holds the print job.
357 NOTIFICATION_PRINT_JOB_RELEASED,
359 // Shutdown ----------------------------------------------------------------
361 // Sent when WM_ENDSESSION has been received, after the browsers have been
362 // closed but before browser process has been shutdown. The source/details
363 // are all source and no details.
364 NOTIFICATION_SESSION_END,
366 // User Scripts ------------------------------------------------------------
368 // Sent when there are new user scripts available. The details are a
369 // pointer to SharedMemory containing the new scripts.
370 NOTIFICATION_USER_SCRIPTS_UPDATED,
372 // Extensions --------------------------------------------------------------
374 // Sent when a CrxInstaller finishes. Source is the CrxInstaller that
375 // finished. The details are the extension which was installed.
376 NOTIFICATION_CRX_INSTALLER_DONE,
378 // Sent when the known installed extensions have all been loaded. In
379 // testing scenarios this can happen multiple times if extensions are
380 // unloaded and reloaded. The source is a Profile.
381 NOTIFICATION_EXTENSIONS_READY,
383 // DEPRECATED: Use ExtensionRegistry::AddObserver instead.
385 // Sent when a new extension is loaded. The details are an Extension, and
386 // the source is a Profile.
387 NOTIFICATION_EXTENSION_LOADED_DEPRECATED,
389 // An error occured while attempting to load an extension. The details are a
390 // string with details about why the load failed.
391 NOTIFICATION_EXTENSION_LOAD_ERROR,
393 // Sent when an extension is enabled. Under most circumstances, listeners
394 // will want to use NOTIFICATION_EXTENSION_LOADED_DEPRECATED. This
395 // notification is only
396 // fired when the "Enable" button is hit in the extensions tab. The details
397 // are an Extension, and the source is a Profile.
398 NOTIFICATION_EXTENSION_ENABLED,
400 // Sent when attempting to load a new extension, but they are disabled. The
401 // details are an Extension*, and the source is a Profile*.
402 NOTIFICATION_EXTENSION_UPDATE_DISABLED,
404 // Sent when an extension's permissions change. The details are an
405 // UpdatedExtensionPermissionsInfo, and the source is a Profile.
406 NOTIFICATION_EXTENSION_PERMISSIONS_UPDATED,
408 // DEPRECATED: Use ExtensionRegistry::AddObserver instead.
410 // Sent immediately before new extensions are installed or existing
411 // extensions are updated. The details are an InstalledExtensionInfo, and the
412 // source is a Profile.
413 NOTIFICATION_EXTENSION_WILL_BE_INSTALLED_DEPRECATED,
415 // An error occured during extension install. The details are a string with
416 // details about why the install failed.
417 NOTIFICATION_EXTENSION_INSTALL_ERROR,
419 // DEPRECATED: Use ExtensionRegistry::AddObserver instead.
421 // Sent when an extension has been uninstalled. The details are an Extension,
422 // and the source is a Profile.
423 NOTIFICATION_EXTENSION_UNINSTALLED_DEPRECATED,
425 // Sent when an extension uninstall is not allowed because the extension is
426 // not user manageable. The details are an Extension, and the source is a
427 // Profile.
428 NOTIFICATION_EXTENSION_UNINSTALL_NOT_ALLOWED,
430 // DEPRECATED: Use ExtensionRegistry::AddObserver instead.
432 // Sent when an extension is unloaded. This happens when an extension is
433 // uninstalled or disabled. The details are an UnloadedExtensionInfo, and
434 // the source is a Profile.
436 // Note that when this notification is sent, ExtensionService has already
437 // removed the extension from its internal state.
438 NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED,
440 // Sent when an Extension object is removed from ExtensionService. This
441 // can happen when an extension is uninstalled, upgraded, or blacklisted,
442 // including all cases when the Extension is deleted. The details are an
443 // Extension, and the source is a Profile.
444 NOTIFICATION_EXTENSION_REMOVED,
446 // Sent after a new ExtensionHost is created. The details are
447 // an ExtensionHost* and the source is a Profile*.
448 NOTIFICATION_EXTENSION_HOST_CREATED,
450 // Sent before an ExtensionHost is destroyed. The details are
451 // an ExtensionHost* and the source is a Profile*.
452 NOTIFICATION_EXTENSION_HOST_DESTROYED,
454 // Sent by an ExtensionHost when it has finished its initial page load,
455 // including any external resources.
456 // The details are an ExtensionHost* and the source is a Profile*.
457 NOTIFICATION_EXTENSION_HOST_DID_STOP_LOADING,
459 // Sent by an ExtensionHost when its render view requests closing through
460 // window.close(). The details are an ExtensionHost* and the source is a
461 // Profile*.
462 NOTIFICATION_EXTENSION_HOST_VIEW_SHOULD_CLOSE,
464 // Sent when extension render process ends (whether it crashes or closes).
465 // The details are an ExtensionHost* and the source is a Profile*. Not sent
466 // during browser shutdown.
467 NOTIFICATION_EXTENSION_PROCESS_TERMINATED,
469 // Sent when a background page is ready so other components can load.
470 NOTIFICATION_EXTENSION_BACKGROUND_PAGE_READY,
472 // Sent when a browser action's state has changed. The source is the
473 // ExtensionAction* that changed. The details are the Profile* that the
474 // browser action belongs to.
475 NOTIFICATION_EXTENSION_BROWSER_ACTION_UPDATED,
477 // Sent when the count of page actions has changed. Note that some of them
478 // may not apply to the current page. The source is a LocationBar*. There
479 // are no details.
480 NOTIFICATION_EXTENSION_PAGE_ACTION_COUNT_CHANGED,
482 // Sent when a browser action's visibility has changed. The source is the
483 // ExtensionPrefs* that changed, and the details are a std::string with the
484 // extension's ID.
485 NOTIFICATION_EXTENSION_BROWSER_ACTION_VISIBILITY_CHANGED,
487 // Sent when a page action's visibility has changed. The source is the
488 // ExtensionAction* that changed. The details are a WebContents*.
489 NOTIFICATION_EXTENSION_PAGE_ACTION_VISIBILITY_CHANGED,
491 // Sent when a system indicator action's state has changed. The source is the
492 // Profile* that the browser action belongs to. The details are the
493 // ExtensionAction* that changed.
494 NOTIFICATION_EXTENSION_SYSTEM_INDICATOR_UPDATED,
496 // Sent when an extension command has been removed. The source is the profile
497 // and the details is a std::pair of two std::string objects (an extension ID
498 // and the name of the command being removed).
499 NOTIFICATION_EXTENSION_COMMAND_REMOVED,
501 // Sent when an extension command has been added. The source is the profile
502 // and the details is a std::pair of two std::string objects (an extension ID
503 // and the name of the command being added).
504 NOTIFICATION_EXTENSION_COMMAND_ADDED,
506 // Sent when an extension command shortcut for a browser action is activated
507 // on Mac. The source is the profile and the details is a std::pair of a
508 // std::string containing an extension ID and a gfx::NativeWindow for the
509 // associated window.
510 NOTIFICATION_EXTENSION_COMMAND_BROWSER_ACTION_MAC,
512 // Sent when an extension command shortcut for a page action is activated
513 // on Mac. The source is the profile and the details is a std::pair of a
514 // std::string containing an extension ID and a gfx::NativeWindow for the
515 // associated window.
516 NOTIFICATION_EXTENSION_COMMAND_PAGE_ACTION_MAC,
518 // A new extension RenderViewHost has been registered. The details are
519 // the RenderViewHost*.
520 NOTIFICATION_EXTENSION_VIEW_REGISTERED,
522 // An extension RenderViewHost has been unregistered. The details are
523 // the RenderViewHost*.
524 NOTIFICATION_EXTENSION_VIEW_UNREGISTERED,
526 // Sent by an extension to notify the browser about the results of a unit
527 // test.
528 NOTIFICATION_EXTENSION_TEST_PASSED,
529 NOTIFICATION_EXTENSION_TEST_FAILED,
531 // Sent by extension test javascript code, typically in a browser test. The
532 // sender is a std::string representing the extension id, and the details
533 // are a std::string with some message. This is particularly useful when you
534 // want to have C++ code wait for javascript code to do something.
535 NOTIFICATION_EXTENSION_TEST_MESSAGE,
537 // Sent when an bookmarks extensions API function was successfully invoked.
538 // The source is the id of the extension that invoked the function, and the
539 // details are a pointer to the const BookmarksFunction in question.
540 NOTIFICATION_EXTENSION_BOOKMARKS_API_INVOKED,
542 // Sent when a downloads extensions API event is fired. The source is an
543 // ExtensionDownloadsEventRouter::NotificationSource, and the details is a
544 // std::string containing json. Used for testing.
545 NOTIFICATION_EXTENSION_DOWNLOADS_EVENT,
547 // Sent when an omnibox extension has sent back omnibox suggestions. The
548 // source is the profile, and the details are an
549 // extensions::api::omnibox::SendSuggestions::Params object.
550 NOTIFICATION_EXTENSION_OMNIBOX_SUGGESTIONS_READY,
552 // Sent when the user accepts the input in an extension omnibox keyword
553 // session. The source is the profile.
554 NOTIFICATION_EXTENSION_OMNIBOX_INPUT_ENTERED,
556 // Sent when an omnibox extension has updated the default suggestion. The
557 // source is the profile.
558 NOTIFICATION_EXTENSION_OMNIBOX_DEFAULT_SUGGESTION_CHANGED,
560 // Sent when the extension updater starts checking for updates to installed
561 // extensions. The source is a Profile, and there are no details.
562 NOTIFICATION_EXTENSION_UPDATING_STARTED,
564 // The extension updater found an update and will attempt to download and
565 // install it. The source is a Profile, and the details are an
566 // extensions::UpdateDetails object with the extension id and version of the
567 // found update.
568 NOTIFICATION_EXTENSION_UPDATE_FOUND,
570 // Upgrade notifications ---------------------------------------------------
572 // Sent when Chrome believes an update has been installed and available for
573 // long enough with the user shutting down to let it take effect. See
574 // upgrade_detector.cc for details on how long it waits. No details are
575 // expected.
576 NOTIFICATION_UPGRADE_RECOMMENDED,
578 // Sent when a critical update has been installed. No details are expected.
579 NOTIFICATION_CRITICAL_UPGRADE_INSTALLED,
581 // Sent when the current install is outdated. No details are expected.
582 NOTIFICATION_OUTDATED_INSTALL,
584 // Sent when the current install is outdated and auto-update (AU) is disabled.
585 // No details are expected.
586 NOTIFICATION_OUTDATED_INSTALL_NO_AU,
588 // Software incompatibility notifications ----------------------------------
590 // Sent when Chrome has finished compiling the list of loaded modules (and
591 // other modules of interest). No details are expected.
592 NOTIFICATION_MODULE_LIST_ENUMERATED,
594 // Sent when Chrome is done scanning the module list and when the user has
595 // acknowledged the module incompatibility. No details are expected.
596 NOTIFICATION_MODULE_INCOMPATIBILITY_BADGE_CHANGE,
598 // Content Settings --------------------------------------------------------
600 // Sent when content settings change. The source is a HostContentSettings
601 // object, the details are ContentSettingsNotificationsDetails.
602 NOTIFICATION_CONTENT_SETTINGS_CHANGED,
604 // Sent when the collect cookies dialog is shown. The source is a
605 // TabSpecificContentSettings object, there are no details.
606 NOTIFICATION_COLLECTED_COOKIES_SHOWN,
608 // Sent when a non-default setting in the the notification content settings
609 // map has changed. The source is the DesktopNotificationService, the
610 // details are None.
611 NOTIFICATION_DESKTOP_NOTIFICATION_SETTINGS_CHANGED,
613 // Sent when content settings change for a tab. The source is a
614 // content::WebContents object, the details are None.
615 NOTIFICATION_WEB_CONTENT_SETTINGS_CHANGED,
617 // Sync --------------------------------------------------------------------
619 // The sync service has finished the datatype configuration process. The
620 // source is the ProfileSyncService object of the Profile. There are no
621 // details.
622 NOTIFICATION_SYNC_CONFIGURE_DONE,
624 // A service is requesting a sync datatype refresh for the current profile.
625 // The details value is a const syncer::ModelTypeSet.
626 // If the payload map is empty, it should be treated as an invalidation for
627 // all enabled types. This is used by session sync.
628 NOTIFICATION_SYNC_REFRESH_LOCAL,
630 // External notification requesting a sync datatype refresh for the current
631 // profile. The details value is a const syncer::ObjectIdInvalidationMap.
632 // If the payload map is empty, it should be treated as an invalidation for
633 // all enabled types. This is used for notifications on Android.
634 NOTIFICATION_SYNC_REFRESH_REMOTE,
636 // The session service has been saved. This notification type is only sent
637 // if there were new SessionService commands to save, and not for no-op save
638 // operations.
639 NOTIFICATION_SESSION_SERVICE_SAVED,
641 // A foreign session has been updated. If a new tab page is open, the
642 // foreign session handler needs to update the new tab page's foreign
643 // session data.
644 NOTIFICATION_FOREIGN_SESSION_UPDATED,
646 // Foreign sessions has been disabled. New tabs should not display foreign
647 // session data.
648 NOTIFICATION_FOREIGN_SESSION_DISABLED,
650 // All tab metadata has been loaded from disk asynchronously.
651 // Sent on the UI thread.
652 // The source is the Profile. There are no details.
653 NOTIFICATION_SESSION_RESTORE_COMPLETE,
655 // Cookies -----------------------------------------------------------------
657 // Sent when a cookie changes. The source is a Profile object, the details
658 // are a ChromeCookieDetails object.
659 NOTIFICATION_COOKIE_CHANGED,
661 // Download Notifications --------------------------------------------------
663 // Sent when a download is initiated. It is possible that the download will
664 // not actually begin due to the DownloadRequestLimiter cancelling it
665 // prematurely.
666 // The source is the corresponding RenderViewHost. There are no details.
667 NOTIFICATION_DOWNLOAD_INITIATED,
669 // Misc --------------------------------------------------------------------
671 // Sent when PerformanceMonitor has finished all the initial steps of data
672 // collection and has begun passively observing. The source is the
673 // PerformanceMonitor*. No details are expected.
674 NOTIFICATION_PERFORMANCE_MONITOR_INITIALIZED,
676 #if defined(OS_CHROMEOS)
677 // Sent when a chromium os user logs in.
678 // The details are a chromeos::User object.
679 NOTIFICATION_LOGIN_USER_CHANGED,
681 // Sent immediately after the logged-in user's profile is ready.
682 // The details are a Profile object.
683 NOTIFICATION_LOGIN_USER_PROFILE_PREPARED,
685 // Sent when the chromium session of a particular user is started.
686 // If this is a new user on the machine this will not be sent until a profile
687 // picture has been selected, unlike NOTIFICATION_LOGIN_USER_CHANGED which is
688 // sent immediately after the user has logged in. This will be sent again if
689 // the browser crashes and restarts.
690 // The details are a chromeos::User object.
691 NOTIFICATION_SESSION_STARTED,
693 // Sent when user image is updated.
694 NOTIFICATION_LOGIN_USER_IMAGE_CHANGED,
696 // Sent by UserManager when a profile image download has been completed.
697 NOTIFICATION_PROFILE_IMAGE_UPDATED,
699 // Sent by UserManager when profile image download has failed or user has the
700 // default profile image or no profile image at all. No details are expected.
701 NOTIFICATION_PROFILE_IMAGE_UPDATE_FAILED,
703 // Sent when a chromium os user attempts to log in. The source is
704 // all and the details are AuthenticationNotificationDetails.
705 NOTIFICATION_LOGIN_AUTHENTICATION,
707 // Sent when a network error message is displayed on the WebUI login screen.
708 // First paint event of this fires NOTIFICATION_LOGIN_OR_LOCK_WEBUI_VISIBLE.
709 NOTIFICATION_LOGIN_NETWORK_ERROR_SHOWN,
711 // Sent when the specific part of login/lock WebUI is considered to be
712 // visible. That moment is tracked as the first paint event after one of the:
713 // NOTIFICATION_LOGIN_NETWORK_ERROR_SHOWN
715 // Possible series of notifications:
716 // 1. Boot into fresh OOBE
717 // NOTIFICATION_LOGIN_OR_LOCK_WEBUI_VISIBLE
718 // 2. Boot into user pods list (normal boot). Same for lock screen.
719 // NOTIFICATION_LOGIN_OR_LOCK_WEBUI_VISIBLE
720 // 3. Boot into GAIA sign in UI (user pods display disabled or no users):
721 // if no network is connected or flaky network
722 // (NOTIFICATION_LOGIN_NETWORK_ERROR_SHOWN +
723 // NOTIFICATION_LOGIN_OR_LOCK_WEBUI_VISIBLE)
724 // NOTIFICATION_LOGIN_OR_LOCK_WEBUI_VISIBLE
725 // 4. Boot into retail mode
726 // NOTIFICATION_LOGIN_OR_LOCK_WEBUI_VISIBLE
727 // 5. Boot into kiosk mode
728 // NOTIFICATION_KIOSK_APP_LAUNCHED
729 NOTIFICATION_LOGIN_OR_LOCK_WEBUI_VISIBLE,
731 // Sent when proxy dialog is closed.
732 NOTIFICATION_LOGIN_PROXY_CHANGED,
734 // Send when kiosk auto-launch warning screen is visible.
735 NOTIFICATION_KIOSK_AUTOLAUNCH_WARNING_VISIBLE,
737 // Send when kiosk auto-launch warning screen had completed.
738 NOTIFICATION_KIOSK_AUTOLAUNCH_WARNING_COMPLETED,
740 // Send when enable consumer kiosk warning screen is visible.
741 NOTIFICATION_KIOSK_ENABLE_WARNING_VISIBLE,
743 // Send when consumer kiosk has been enabled.
744 NOTIFICATION_KIOSK_ENABLED,
746 // Send when enable consumer kiosk warning screen had completed.
747 NOTIFICATION_KIOSK_ENABLE_WARNING_COMPLETED,
749 // Sent when kiosk app list is loaded in UI.
750 NOTIFICATION_KIOSK_APPS_LOADED,
752 // Sent when a kiosk app is launched.
753 NOTIFICATION_KIOSK_APP_LAUNCHED,
755 // Sent when the user list has changed.
756 NOTIFICATION_USER_LIST_CHANGED,
758 // Sent when the screen lock state has changed. The source is
759 // ScreenLocker and the details is a bool specifing that the
760 // screen is locked. When details is a false, the source object
761 // is being deleted, so the receiver shouldn't use the screen locker
762 // object.
763 NOTIFICATION_SCREEN_LOCK_STATE_CHANGED,
765 // Sent by DeviceSettingsService to indicate that the ownership status
766 // changed. If you can, please use DeviceSettingsService::Observer instead.
767 // Other singleton-based services can't use that because Observer
768 // unregistration is impossible due to unpredictable deletion order.
769 NOTIFICATION_OWNERSHIP_STATUS_CHANGED,
771 // Sent by SIM unlock dialog when it has finished with the process of
772 // updating RequirePin setting. RequirePin setting might have been changed
773 // to a new value or update might have been canceled.
774 // In either case notification is sent and details contain a bool
775 // that represents current value.
776 NOTIFICATION_REQUIRE_PIN_SETTING_CHANGE_ENDED,
778 // Sent by SIM unlock dialog when it has finished the EnterPin or
779 // EnterPuk dialog, either because the user cancelled, or entered a
780 // PIN or PUK.
781 NOTIFICATION_ENTER_PIN_ENDED,
782 #endif
784 #if defined(TOOLKIT_VIEWS)
785 // Sent when a bookmark's context menu is shown. Used to notify
786 // tests that the context menu has been created and shown.
787 NOTIFICATION_BOOKMARK_CONTEXT_MENU_SHOWN,
789 // Notification that the nested loop using during tab dragging has returned.
790 // Used for testing.
791 NOTIFICATION_TAB_DRAG_LOOP_DONE,
792 #endif
794 // Send when a context menu is shown. Used to notify tests that the context
795 // menu has been created and shown.
796 NOTIFICATION_RENDER_VIEW_CONTEXT_MENU_SHOWN,
798 // Sent when the Instant Controller determines whether an Instant tab supports
799 // the Instant API or not.
800 NOTIFICATION_INSTANT_TAB_SUPPORT_DETERMINED,
802 // Sent when the Instant Controller determines whether the NTP supports the
803 // Instant API or not.
804 NOTIFICATION_INSTANT_NTP_SUPPORT_DETERMINED,
806 // Sent when the CaptivePortalService checks if we're behind a captive portal.
807 // The Source is the Profile the CaptivePortalService belongs to, and the
808 // Details are a Details<CaptivePortalService::CheckResults>.
809 NOTIFICATION_CAPTIVE_PORTAL_CHECK_RESULT,
811 // Sent when the applications in the NTP app launcher have been reordered.
812 // The details, if not NoDetails, is the std::string ID of the extension that
813 // was moved.
814 NOTIFICATION_EXTENSION_LAUNCHER_REORDERED,
816 // Sent when an app is installed and an NTP has been shown. Source is the
817 // WebContents that was shown, and Details is the string ID of the extension
818 // which was installed.
819 NOTIFICATION_APP_INSTALLED_TO_NTP,
821 // Similar to NOTIFICATION_APP_INSTALLED_TO_NTP but used to nofity ash AppList
822 // about installed app. Source is the profile in which the app is installed
823 // and Details is the string ID of the extension.
824 NOTIFICATION_APP_INSTALLED_TO_APPLIST,
826 #if defined(USE_ASH)
827 // Sent when wallpaper show animation has finished.
828 NOTIFICATION_WALLPAPER_ANIMATION_FINISHED,
830 // Sent when the Ash session has started. In its current incantation this is
831 // generated when the metro app has connected to the browser IPC channel.
832 // Used only on Windows.
833 NOTIFICATION_ASH_SESSION_STARTED,
834 // Sent when the Ash session ended. Currently this means the metro app exited.
835 // Used only on Windows.
836 NOTIFICATION_ASH_SESSION_ENDED,
837 #endif
839 // Protocol Handler Registry -----------------------------------------------
840 // Sent when a ProtocolHandlerRegistry is changed. The source is the profile.
841 NOTIFICATION_PROTOCOL_HANDLER_REGISTRY_CHANGED,
843 // Sent when the cached profile info has changed.
844 NOTIFICATION_PROFILE_CACHED_INFO_CHANGED,
846 // Sent when the cached profile has finished writing a profile picture to
847 // disk.
848 NOTIFICATION_PROFILE_CACHE_PICTURE_SAVED,
850 // Sent when the browser enters or exits fullscreen mode.
851 NOTIFICATION_FULLSCREEN_CHANGED,
853 // Sent when the FullscreenController changes, confirms, or denies mouse lock.
854 // The source is the browser's FullscreenController, no details.
855 NOTIFICATION_MOUSE_LOCK_CHANGED,
857 // Sent by the PluginPrefs when there is a change of plugin enable/disable
858 // status. The source is the profile.
859 NOTIFICATION_PLUGIN_ENABLE_STATUS_CHANGED,
861 // Panels Notifications. The Panels are small browser windows near the bottom
862 // of the screen.
863 // Sent when all nonblocking bounds animations are finished across panels.
864 // Used only in unit testing.
865 NOTIFICATION_PANEL_BOUNDS_ANIMATIONS_FINISHED,
867 // Sent when panel gains/loses focus.
868 // The source is the Panel, no details.
869 // Used only in unit testing.
870 NOTIFICATION_PANEL_CHANGED_ACTIVE_STATUS,
872 // Sent when panel is minimized/restored/shows title only etc.
873 // The source is the Panel, no details.
874 NOTIFICATION_PANEL_CHANGED_EXPANSION_STATE,
876 // Sent when panel window size is known. This is for platforms where the
877 // window creation is async and size of the window only becomes known later.
878 // Used only in unit testing.
879 NOTIFICATION_PANEL_WINDOW_SIZE_KNOWN,
881 // Sent when panel app icon is loaded.
882 // Used only in unit testing.
883 NOTIFICATION_PANEL_APP_ICON_LOADED,
885 // Sent when panel collection get updated.
886 // The source is the PanelCollection, no details.
887 // Used only in coordination with notification balloons.
888 NOTIFICATION_PANEL_COLLECTION_UPDATED,
890 // Sent when panel is closed.
891 // The source is the Panel, no details.
892 NOTIFICATION_PANEL_CLOSED,
894 // Sent when a global error has changed and the error UI should update it
895 // self. The source is a Source<Profile> containing the profile for the
896 // error. The detail is a GlobalError object that has changed or NULL if
897 // all error UIs should update.
898 NOTIFICATION_GLOBAL_ERRORS_CHANGED,
900 // BrowsingDataRemover ----------------------------------------------------
901 // Sent on the UI thread after BrowsingDataRemover has removed browsing data
902 // but before it has notified its explicit observers. The source is a
903 // Source<Profile> containing the profile in which browsing data was removed,
904 // and the detail is a BrowsingDataRemover::NotificationDetail containing the
905 // removal mask and the start of the removal timeframe with which
906 // BrowsingDataRemove::Remove was called.
907 NOTIFICATION_BROWSING_DATA_REMOVED,
909 // The user accepted or dismissed a SSL client authentication request.
910 // The source is a Source<net::HttpNetworkSession>. Details is a
911 // (std::pair<net::SSLCertRequestInfo*, net::X509Certificate*>).
912 NOTIFICATION_SSL_CLIENT_AUTH_CERT_SELECTED,
914 // Session Restore --------------------------------------------------------
916 // Sent when synchronous (startup) session restore completes. No details or
917 // source.
918 NOTIFICATION_SESSION_RESTORE_DONE,
920 // Note:-
921 // Currently only Content and Chrome define and use notifications.
922 // Custom notifications not belonging to Content and Chrome should start
923 // from here.
924 NOTIFICATION_CHROME_END,
927 } // namespace chrome
929 #endif // CHROME_BROWSER_CHROME_NOTIFICATION_TYPES_H_