| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |