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

Side by Side Diff: chrome/browser/about_flags.cc

Issue 14344002: Sync: Turn on full history sync by default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix use-after-free. Created 7 years, 7 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/app/generated_resources.grd ('k') | chrome/browser/history/web_history_service.cc » ('j') | 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/browser/about_flags.h" 5 #include "chrome/browser/about_flags.h"
6 6
7 #include <string.h> 7 #include <string.h>
8 8
9 #include <algorithm> 9 #include <algorithm>
10 #include <iterator> 10 #include <iterator>
(...skipping 1258 matching lines...) Expand 10 before | Expand all | Expand 10 after
1269 "enable-rich-notifications", 1269 "enable-rich-notifications",
1270 IDS_FLAGS_ENABLE_RICH_NOTIFICATIONS_NAME, 1270 IDS_FLAGS_ENABLE_RICH_NOTIFICATIONS_NAME,
1271 IDS_FLAGS_ENABLE_RICH_NOTIFICATIONS_DESCRIPTION, 1271 IDS_FLAGS_ENABLE_RICH_NOTIFICATIONS_DESCRIPTION,
1272 kOsWin | kOsCrOS, 1272 kOsWin | kOsCrOS,
1273 ENABLE_DISABLE_VALUE_TYPE( 1273 ENABLE_DISABLE_VALUE_TYPE(
1274 message_center::switches::kEnableRichNotifications, 1274 message_center::switches::kEnableRichNotifications,
1275 message_center::switches::kDisableRichNotifications) 1275 message_center::switches::kDisableRichNotifications)
1276 }, 1276 },
1277 #endif 1277 #endif
1278 { 1278 {
1279 "full-history-sync", 1279 "disable-full-history-sync",
1280 IDS_FLAGS_FULL_HISTORY_SYNC_NAME, 1280 IDS_FLAGS_FULL_HISTORY_SYNC_NAME,
1281 IDS_FLAGS_FULL_HISTORY_SYNC_DESCRIPTION, 1281 IDS_FLAGS_FULL_HISTORY_SYNC_DESCRIPTION,
1282 kOsAll, 1282 kOsAll,
1283 SINGLE_VALUE_TYPE(switches::kHistoryEnableFullHistorySync) 1283 SINGLE_VALUE_TYPE(switches::kHistoryDisableFullHistorySync)
1284 }, 1284 },
1285 { 1285 {
1286 "enable-usermedia-screen-capture", 1286 "enable-usermedia-screen-capture",
1287 IDS_FLAGS_ENABLE_SCREEN_CAPTURE_NAME, 1287 IDS_FLAGS_ENABLE_SCREEN_CAPTURE_NAME,
1288 IDS_FLAGS_ENABLE_SCREEN_CAPTURE_DESCRIPTION, 1288 IDS_FLAGS_ENABLE_SCREEN_CAPTURE_DESCRIPTION,
1289 kOsDesktop, 1289 kOsDesktop,
1290 SINGLE_VALUE_TYPE(switches::kEnableUserMediaScreenCapturing) 1290 SINGLE_VALUE_TYPE(switches::kEnableUserMediaScreenCapturing)
1291 }, 1291 },
1292 { 1292 {
1293 "enable-apps-devtool-app", 1293 "enable-apps-devtool-app",
(...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after
1900 } 1900 }
1901 1901
1902 const Experiment* GetExperiments(size_t* count) { 1902 const Experiment* GetExperiments(size_t* count) {
1903 *count = num_experiments; 1903 *count = num_experiments;
1904 return experiments; 1904 return experiments;
1905 } 1905 }
1906 1906
1907 } // namespace testing 1907 } // namespace testing
1908 1908
1909 } // namespace about_flags 1909 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/history/web_history_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698