| Index: chrome/browser/profiles/profile.h
|
| ===================================================================
|
| --- chrome/browser/profiles/profile.h (revision 203598)
|
| +++ chrome/browser/profiles/profile.h (working copy)
|
| @@ -95,12 +95,16 @@
|
| };
|
|
|
| enum CreateStatus {
|
| - // Profile services were not created.
|
| - CREATE_STATUS_FAIL,
|
| + // Profile services were not created due to a local error (e.g., disk full).
|
| + CREATE_STATUS_LOCAL_FAIL,
|
| + // Profile services were not created due to a remote error (e.g., network
|
| + // down during limited-user registration).
|
| + CREATE_STATUS_REMOTE_FAIL,
|
| // Profile created but before initializing extensions and promo resources.
|
| CREATE_STATUS_CREATED,
|
| // Profile is created, extensions and promo resources are initialized.
|
| CREATE_STATUS_INITIALIZED,
|
| + MAX_CREATE_STATUS // For histogram display.
|
| };
|
|
|
| enum CreateMode {
|
|
|