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

Side by Side Diff: chrome/browser/ui/profile_error_dialog.h

Issue 2047483003: Add fallback behavior if the last used profile cannot initialize (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bug-614753-fix
Patch Set: Fix a mistake in a comment. (Didn't check Atom reflow output, sorry :-( ) Created 4 years, 4 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_UI_PROFILE_ERROR_DIALOG_H_ 5 #ifndef CHROME_BROWSER_UI_PROFILE_ERROR_DIALOG_H_
6 #define CHROME_BROWSER_UI_PROFILE_ERROR_DIALOG_H_ 6 #define CHROME_BROWSER_UI_PROFILE_ERROR_DIALOG_H_
7 7
8 // Be very careful while modifying this enum. Do NOT remove any elements from 8 // Be very careful while modifying this enum. Do NOT remove any elements from
9 // this enum. If you need to add one, add them to the end, right before 9 // this enum. If you need to add one, add them to the end, right before
10 // PROFILE_ERROR_END. PROFILE_ERROR_END should ALWAYS be the last element in 10 // PROFILE_ERROR_END. PROFILE_ERROR_END should ALWAYS be the last element in
11 // this enum. This is important because this enum is used to back a histogram, 11 // this enum. This is important because this enum is used to back a histogram,
12 // and these are implicit assumptions made in terms of how enumerated 12 // and these are implicit assumptions made in terms of how enumerated
13 // histograms are defined. 13 // histograms are defined.
14 enum ProfileErrorType { 14 enum ProfileErrorType {
15 PROFILE_ERROR_HISTORY, 15 PROFILE_ERROR_HISTORY,
16 PROFILE_ERROR_PREFERENCES, 16 PROFILE_ERROR_PREFERENCES,
17 PROFILE_ERROR_DB_AUTOFILL_WEB_DATA, 17 PROFILE_ERROR_DB_AUTOFILL_WEB_DATA,
18 PROFILE_ERROR_DB_TOKEN_WEB_DATA, 18 PROFILE_ERROR_DB_TOKEN_WEB_DATA,
19 PROFILE_ERROR_DB_WEB_DATA, 19 PROFILE_ERROR_DB_WEB_DATA,
20 PROFILE_ERROR_DB_KEYWORD_WEB_DATA, 20 PROFILE_ERROR_DB_KEYWORD_WEB_DATA,
21 PROFILE_ERROR_CREATE_FAILURE_SPECIFIED,
22 PROFILE_ERROR_CREATE_FAILURE_ALL,
21 PROFILE_ERROR_END 23 PROFILE_ERROR_END
22 }; 24 };
23 25
24 // Shows an error dialog corresponding to the inability to open some portion of 26 // Shows an error dialog corresponding to the inability to open some portion of
25 // the profile. |message_id| is a string id corresponding to the message to 27 // the profile. |message_id| is a string id corresponding to the message to
26 // show. The ProfileErrorType needs to correspond to one of the profile error 28 // show. The ProfileErrorType needs to correspond to one of the profile error
27 // types in the enum above. If your use case doesn't fit any of the ones listed 29 // types in the enum above. If your use case doesn't fit any of the ones listed
28 // above, please add your type to the enum and modify the enum 30 // above, please add your type to the enum and modify the enum
29 // definition in tools/metrics/histograms/histograms.xml accordingly. 31 // definition in tools/metrics/histograms/histograms.xml accordingly.
30 void ShowProfileErrorDialog(ProfileErrorType type, int message_id); 32 void ShowProfileErrorDialog(ProfileErrorType type, int message_id);
31 33
32 #endif // CHROME_BROWSER_UI_PROFILE_ERROR_DIALOG_H_ 34 #endif // CHROME_BROWSER_UI_PROFILE_ERROR_DIALOG_H_
OLDNEW
« no previous file with comments | « chrome/browser/profiles/profiles_state.cc ('k') | chrome/browser/ui/startup/startup_browser_creator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698