Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Side by Side Diff: chrome/browser/chrome_notification_types.h

Issue 289283013: Revert of Unload all apps / extensions when deleting a profile. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 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 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 CHROME_BROWSER_CHROME_NOTIFICATION_TYPES_H_ 5 #ifndef CHROME_BROWSER_CHROME_NOTIFICATION_TYPES_H_
6 #define CHROME_BROWSER_CHROME_NOTIFICATION_TYPES_H_ 6 #define CHROME_BROWSER_CHROME_NOTIFICATION_TYPES_H_
7 7
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 #include "content/public/browser/notification_types.h" 9 #include "content/public/browser/notification_types.h"
10 10
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 286
287 // Sent after a Profile has been created. This notification is sent both for 287 // Sent after a Profile has been created. This notification is sent both for
288 // normal and OTR profiles. 288 // normal and OTR profiles.
289 // The details are none and the source is the new profile. 289 // The details are none and the source is the new profile.
290 NOTIFICATION_PROFILE_CREATED, 290 NOTIFICATION_PROFILE_CREATED,
291 291
292 // Sent after a Profile has been added to ProfileManager. 292 // Sent after a Profile has been added to ProfileManager.
293 // The details are none and the source is the new profile. 293 // The details are none and the source is the new profile.
294 NOTIFICATION_PROFILE_ADDED, 294 NOTIFICATION_PROFILE_ADDED,
295 295
296 // Sent early in the process of destroying a Profile, at the time a user
297 // initiates the deletion of a profile versus the much later time when the
298 // profile object is actually destroyed (use NOTIFICATION_PROFILE_DESTROYED).
299 // The details are none and the source is a Profile*.
300 NOTIFICATION_PROFILE_DESTRUCTION_STARTED,
301
302 // Sent before a Profile is destroyed. This notification is sent both for 296 // Sent before a Profile is destroyed. This notification is sent both for
303 // normal and OTR profiles. 297 // normal and OTR profiles.
304 // The details are none and the source is a Profile*. 298 // The details are none and the source is a Profile*.
305 NOTIFICATION_PROFILE_DESTROYED, 299 NOTIFICATION_PROFILE_DESTROYED,
306 300
307 // Sent after the URLRequestContextGetter for a Profile has been initialized. 301 // Sent after the URLRequestContextGetter for a Profile has been initialized.
308 // The details are none and the source is a Profile*. 302 // The details are none and the source is a Profile*.
309 NOTIFICATION_PROFILE_URL_REQUEST_CONTEXT_GETTER_INITIALIZED, 303 NOTIFICATION_PROFILE_URL_REQUEST_CONTEXT_GETTER_INITIALIZED,
310 304
311 // TopSites ---------------------------------------------------------------- 305 // TopSites ----------------------------------------------------------------
(...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after
946 // Note:- 940 // Note:-
947 // Currently only Content and Chrome define and use notifications. 941 // Currently only Content and Chrome define and use notifications.
948 // Custom notifications not belonging to Content and Chrome should start 942 // Custom notifications not belonging to Content and Chrome should start
949 // from here. 943 // from here.
950 NOTIFICATION_CHROME_END, 944 NOTIFICATION_CHROME_END,
951 }; 945 };
952 946
953 } // namespace chrome 947 } // namespace chrome
954 948
955 #endif // CHROME_BROWSER_CHROME_NOTIFICATION_TYPES_H_ 949 #endif // CHROME_BROWSER_CHROME_NOTIFICATION_TYPES_H_
OLDNEW
« no previous file with comments | « chrome/browser/background/background_contents_service.cc ('k') | chrome/browser/extensions/extension_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698