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

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

Issue 15305016: Enable the Synced Notification Flag on architectures other than Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | « no previous file | 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) 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 <algorithm> 7 #include <algorithm>
8 #include <iterator> 8 #include <iterator>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 1274 matching lines...) Expand 10 before | Expand all | Expand 10 after
1285 IDS_FLAGS_ENABLE_RICH_NOTIFICATIONS_DESCRIPTION, 1285 IDS_FLAGS_ENABLE_RICH_NOTIFICATIONS_DESCRIPTION,
1286 kOsWin | kOsCrOS | kOsMac, 1286 kOsWin | kOsCrOS | kOsMac,
1287 ENABLE_DISABLE_VALUE_TYPE( 1287 ENABLE_DISABLE_VALUE_TYPE(
1288 message_center::switches::kEnableRichNotifications, 1288 message_center::switches::kEnableRichNotifications,
1289 message_center::switches::kDisableRichNotifications) 1289 message_center::switches::kDisableRichNotifications)
1290 }, 1290 },
1291 { 1291 {
1292 "enable-sync-synced-notifications", 1292 "enable-sync-synced-notifications",
1293 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_NAME, 1293 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_NAME,
1294 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_DESCRIPTION, 1294 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_DESCRIPTION,
1295 kOsWin | kOsCrOS, 1295 kOsDesktop,
1296 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSyncSyncedNotifications, 1296 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSyncSyncedNotifications,
1297 switches::kDisableSyncSyncedNotifications) 1297 switches::kDisableSyncSyncedNotifications)
1298 }, 1298 },
1299 { 1299 {
1300 "disable-full-history-sync", 1300 "disable-full-history-sync",
1301 IDS_FLAGS_FULL_HISTORY_SYNC_NAME, 1301 IDS_FLAGS_FULL_HISTORY_SYNC_NAME,
1302 IDS_FLAGS_FULL_HISTORY_SYNC_DESCRIPTION, 1302 IDS_FLAGS_FULL_HISTORY_SYNC_DESCRIPTION,
1303 kOsAll, 1303 kOsAll,
1304 SINGLE_VALUE_TYPE(switches::kHistoryDisableFullHistorySync) 1304 SINGLE_VALUE_TYPE(switches::kHistoryDisableFullHistorySync)
1305 }, 1305 },
(...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after
1944 } 1944 }
1945 1945
1946 const Experiment* GetExperiments(size_t* count) { 1946 const Experiment* GetExperiments(size_t* count) {
1947 *count = num_experiments; 1947 *count = num_experiments;
1948 return experiments; 1948 return experiments;
1949 } 1949 }
1950 1950
1951 } // namespace testing 1951 } // namespace testing
1952 1952
1953 } // namespace about_flags 1953 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698