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

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

Issue 2107493002: Offer user to send feedback from profile error dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Unused variable Created 4 years, 5 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 namespace base {
9 class FilePath;
10 } // namespace base
11
8 // Be very careful while modifying this enum. Do NOT remove any elements from 12 // 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 13 // 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 14 // 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, 15 // 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 16 // and these are implicit assumptions made in terms of how enumerated
13 // histograms are defined. 17 // histograms are defined.
14 enum ProfileErrorType { 18 enum ProfileErrorType {
15 PROFILE_ERROR_HISTORY, 19 PROFILE_ERROR_HISTORY,
16 PROFILE_ERROR_PREFERENCES, 20 PROFILE_ERROR_PREFERENCES,
17 PROFILE_ERROR_DB_AUTOFILL_WEB_DATA, 21 PROFILE_ERROR_DB_AUTOFILL_WEB_DATA,
18 PROFILE_ERROR_DB_TOKEN_WEB_DATA, 22 PROFILE_ERROR_DB_TOKEN_WEB_DATA,
19 PROFILE_ERROR_DB_WEB_DATA, 23 PROFILE_ERROR_DB_WEB_DATA,
20 PROFILE_ERROR_DB_KEYWORD_WEB_DATA, 24 PROFILE_ERROR_DB_KEYWORD_WEB_DATA,
21 PROFILE_ERROR_END 25 PROFILE_ERROR_END
22 }; 26 };
23 27
24 // Shows an error dialog corresponding to the inability to open some portion of 28 // 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 29 // the profile. |corrupted_file| is the path of the problematic profile database
30 // file. |message_id| is a string id corresponding to the message to
26 // show. The ProfileErrorType needs to correspond to one of the profile error 31 // 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 32 // 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 33 // above, please add your type to the enum and modify the enum
29 // definition in tools/metrics/histograms/histograms.xml accordingly. 34 // definition in tools/metrics/histograms/histograms.xml accordingly.
30 void ShowProfileErrorDialog(ProfileErrorType type, int message_id); 35 void ShowProfileErrorDialog(const base::FilePath& corrupted_file,
36 ProfileErrorType type,
37 int message_id);
31 38
32 #endif // CHROME_BROWSER_UI_PROFILE_ERROR_DIALOG_H_ 39 #endif // CHROME_BROWSER_UI_PROFILE_ERROR_DIALOG_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698