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

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

Issue 10800092: Database support for GDataDirectoryService. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 4 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
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 793 matching lines...) Expand 10 before | Expand all | Expand 10 after
804 SINGLE_VALUE_TYPE(switches::kExperimentalWallpaperUI) 804 SINGLE_VALUE_TYPE(switches::kExperimentalWallpaperUI)
805 }, 805 },
806 { 806 {
807 "enable-drive-v2-api", 807 "enable-drive-v2-api",
808 IDS_FLAGS_ENABLE_DRIVE_V2_API, 808 IDS_FLAGS_ENABLE_DRIVE_V2_API,
809 IDS_FLAGS_ENABLE_DRIVE_V2_API_DESCRIPTION, 809 IDS_FLAGS_ENABLE_DRIVE_V2_API_DESCRIPTION,
810 kOsCrOS, 810 kOsCrOS,
811 SINGLE_VALUE_TYPE(switches::kEnableDriveV2Api), 811 SINGLE_VALUE_TYPE(switches::kEnableDriveV2Api),
812 }, 812 },
813 { 813 {
814 "use-leveldb-for-gdata",
815 IDS_FLAGS_USE_LEVELDB_FOR_GDATA_NAME,
816 IDS_FLAGS_USE_LEVELDB_FOR_GDATA_DESCRIPTION,
817 kOsCrOS,
818 SINGLE_VALUE_TYPE(switches::kUseLevelDBForGData),
819 },
satorux1 2012/08/02 17:24:03 It'd be nicer to create a separate patch for this
achuithb 2012/08/02 20:26:25 Done.
820 {
814 "disable-html5-camera", 821 "disable-html5-camera",
815 IDS_FLAGS_DISABLE_HTML5_CAMERA, 822 IDS_FLAGS_DISABLE_HTML5_CAMERA,
816 IDS_FLAGS_DISABLE_HTML5_CAMERA_DESCRIPTION, 823 IDS_FLAGS_DISABLE_HTML5_CAMERA_DESCRIPTION,
817 kOsCrOS, 824 kOsCrOS,
818 SINGLE_VALUE_TYPE(switches::kDisableHtml5Camera), 825 SINGLE_VALUE_TYPE(switches::kDisableHtml5Camera),
819 }, 826 },
820 { 827 {
821 "disable-new-oobe", 828 "disable-new-oobe",
822 IDS_FLAGS_DISABLE_NEW_OOBE, 829 IDS_FLAGS_DISABLE_NEW_OOBE,
823 IDS_FLAGS_DISABLE_NEW_OOBE_DESCRIPTION, 830 IDS_FLAGS_DISABLE_NEW_OOBE_DESCRIPTION,
(...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after
1306 } 1313 }
1307 1314
1308 const Experiment* GetExperiments(size_t* count) { 1315 const Experiment* GetExperiments(size_t* count) {
1309 *count = num_experiments; 1316 *count = num_experiments;
1310 return experiments; 1317 return experiments;
1311 } 1318 }
1312 1319
1313 } // namespace testing 1320 } // namespace testing
1314 1321
1315 } // namespace about_flags 1322 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698