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

Side by Side Diff: chrome/common/pref_names.cc

Issue 3059: Add preferences for the clear browsing data dialog so that... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years, 3 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
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 #include "chrome/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 namespace prefs { 7 namespace prefs {
8 8
9 // *************** PROFILE PREFS *************** 9 // *************** PROFILE PREFS ***************
10 // These are attached to the user profile 10 // These are attached to the user profile
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 186
187 // A boolean pref set to true if a Home button to open the Home pages should be 187 // A boolean pref set to true if a Home button to open the Home pages should be
188 // visible on the toolbar. 188 // visible on the toolbar.
189 const wchar_t kShowHomeButton[] = L"browser.show_home_button"; 189 const wchar_t kShowHomeButton[] = L"browser.show_home_button";
190 190
191 // A string value which saves short list of recently user selected encodings 191 // A string value which saves short list of recently user selected encodings
192 // separated with comma punctuation mark. 192 // separated with comma punctuation mark.
193 const wchar_t kRecentlySelectedEncoding[] = 193 const wchar_t kRecentlySelectedEncoding[] =
194 L"profile.recently_selected_encodings"; 194 L"profile.recently_selected_encodings";
195 195
196 // Boolean prefs that define the default values for the check boxes in the Clear
197 // Browsing Data dialog.
198 const wchar_t kDeleteBrowsingHistory[] = L"browser.clear_data.browsing_history";
199 const wchar_t kDeleteDownloadHistory[] =
200 L"browser.clear_data.download_history";
201 const wchar_t kDeleteCache[] = L"browser.clear_data.cache";
202 const wchar_t kDeleteCookies[] = L"browser.clear_data.cookies";
203 const wchar_t kDeletePasswords[] = L"browser.clear_data.passwords";
204
196 205
197 // *************** LOCAL STATE *************** 206 // *************** LOCAL STATE ***************
198 // These are attached to the machine/installation 207 // These are attached to the machine/installation
199 208
200 // List of profiles that the app knows about from last run. 209 // List of profiles that the app knows about from last run.
201 const wchar_t kAvailableProfiles[] = L"profiles.available"; 210 const wchar_t kAvailableProfiles[] = L"profiles.available";
202 211
203 // The metrics client GUID and session ID. 212 // The metrics client GUID and session ID.
204 const wchar_t kMetricsClientID[] = L"user_experience_metrics.client_id"; 213 const wchar_t kMetricsClientID[] = L"user_experience_metrics.client_id";
205 const wchar_t kMetricsSessionID[] = L"user_experience_metrics.session_id"; 214 const wchar_t kMetricsSessionID[] = L"user_experience_metrics.session_id";
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 const wchar_t kNumBookmarksInOtherBookmarkFolder[] = 424 const wchar_t kNumBookmarksInOtherBookmarkFolder[] =
416 L"user_experience_metrics.num_bookmarks_in_other_bookmark_folder"; 425 L"user_experience_metrics.num_bookmarks_in_other_bookmark_folder";
417 const wchar_t kNumFoldersInOtherBookmarkFolder[] = 426 const wchar_t kNumFoldersInOtherBookmarkFolder[] =
418 L"user_experience_metrics.num_folders_in_other_bookmark_folder"; 427 L"user_experience_metrics.num_folders_in_other_bookmark_folder";
419 428
420 // Number of keywords. 429 // Number of keywords.
421 const wchar_t kNumKeywords[] = L"user_experience_metrics.num_keywords"; 430 const wchar_t kNumKeywords[] = L"user_experience_metrics.num_keywords";
422 431
423 } // namespace prefs 432 } // namespace prefs
424 433
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698