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

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

Issue 524026: Adds "Delete Local Storage" option to "Clear Browsing Data" for Windows and G... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 10 years, 11 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) 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
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
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
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