| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 // A string value which saves short list of recently user selected encodings | 205 // A string value which saves short list of recently user selected encodings |
| 206 // separated with comma punctuation mark. | 206 // separated with comma punctuation mark. |
| 207 const wchar_t kRecentlySelectedEncoding[] = | 207 const wchar_t kRecentlySelectedEncoding[] = |
| 208 L"profile.recently_selected_encodings"; | 208 L"profile.recently_selected_encodings"; |
| 209 | 209 |
| 210 // Clear Browsing Data dialog preferences. | 210 // Clear Browsing Data dialog preferences. |
| 211 const wchar_t kDeleteBrowsingHistory[] = L"browser.clear_data.browsing_history"; | 211 const wchar_t kDeleteBrowsingHistory[] = L"browser.clear_data.browsing_history"; |
| 212 const wchar_t kDeleteDownloadHistory[] = | 212 const wchar_t kDeleteDownloadHistory[] = |
| 213 L"browser.clear_data.download_history"; | 213 L"browser.clear_data.download_history"; |
| 214 const wchar_t kDeleteCache[] = L"browser.clear_data.cache"; | 214 const wchar_t kDeleteCache[] = L"browser.clear_data.cache"; |
| 215 const wchar_t kDeleteLocalStorage[] = L"browser.clear_data.local_storage"; |
| 215 const wchar_t kDeleteCookies[] = L"browser.clear_data.cookies"; | 216 const wchar_t kDeleteCookies[] = L"browser.clear_data.cookies"; |
| 216 const wchar_t kDeletePasswords[] = L"browser.clear_data.passwords"; | 217 const wchar_t kDeletePasswords[] = L"browser.clear_data.passwords"; |
| 217 const wchar_t kDeleteFormData[] = L"browser.clear_data.form_data"; | 218 const wchar_t kDeleteFormData[] = L"browser.clear_data.form_data"; |
| 218 const wchar_t kDeleteTimePeriod[] = L"browser.clear_data.time_period"; | 219 const wchar_t kDeleteTimePeriod[] = L"browser.clear_data.time_period"; |
| 219 | 220 |
| 220 // Integer prefs giving the widths of the columns in the bookmark table. Two | 221 // Integer prefs giving the widths of the columns in the bookmark table. Two |
| 221 // configs are saved, one with the path column and one without. | 222 // configs are saved, one with the path column and one without. |
| 222 const wchar_t kBookmarkTableNameWidth1[] = L"bookmark_table.name_width_1"; | 223 const wchar_t kBookmarkTableNameWidth1[] = L"bookmark_table.name_width_1"; |
| 223 const wchar_t kBookmarkTableURLWidth1[] = L"bookmark_table.url_width_1"; | 224 const wchar_t kBookmarkTableURLWidth1[] = L"bookmark_table.url_width_1"; |
| 224 const wchar_t kBookmarkTableNameWidth2[] = L"bookmark_table.name_width_2"; | 225 const wchar_t kBookmarkTableNameWidth2[] = L"bookmark_table.name_width_2"; |
| (...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 615 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; | 616 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; |
| 616 | 617 |
| 617 // Create web application shortcut dialog preferences. | 618 // Create web application shortcut dialog preferences. |
| 618 const wchar_t kWebAppCreateOnDesktop[] = L"browser.web_app.create_on_desktop"; | 619 const wchar_t kWebAppCreateOnDesktop[] = L"browser.web_app.create_on_desktop"; |
| 619 const wchar_t kWebAppCreateInAppsMenu[] = | 620 const wchar_t kWebAppCreateInAppsMenu[] = |
| 620 L"browser.web_app.create_in_apps_menu"; | 621 L"browser.web_app.create_in_apps_menu"; |
| 621 const wchar_t kWebAppCreateInQuickLaunchBar[] = | 622 const wchar_t kWebAppCreateInQuickLaunchBar[] = |
| 622 L"browser.web_app.create_in_quick_launch_bar"; | 623 L"browser.web_app.create_in_quick_launch_bar"; |
| 623 | 624 |
| 624 } // namespace prefs | 625 } // namespace prefs |
| OLD | NEW |