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

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

Issue 190063004: chromeos: Delete old, unused contacts code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge again Created 6 years, 9 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 1067 matching lines...) Expand 10 before | Expand all | Expand 10 after
1078 kOsCrOS, 1078 kOsCrOS,
1079 SINGLE_VALUE_TYPE(switches::kMultiProfiles), 1079 SINGLE_VALUE_TYPE(switches::kMultiProfiles),
1080 }, 1080 },
1081 #endif // defined(OS_CHROMEOS) 1081 #endif // defined(OS_CHROMEOS)
1082 { "disable-accelerated-video-decode", 1082 { "disable-accelerated-video-decode",
1083 IDS_FLAGS_DISABLE_ACCELERATED_VIDEO_DECODE_NAME, 1083 IDS_FLAGS_DISABLE_ACCELERATED_VIDEO_DECODE_NAME,
1084 IDS_FLAGS_DISABLE_ACCELERATED_VIDEO_DECODE_DESCRIPTION, 1084 IDS_FLAGS_DISABLE_ACCELERATED_VIDEO_DECODE_DESCRIPTION,
1085 kOsWin | kOsCrOS, 1085 kOsWin | kOsCrOS,
1086 SINGLE_VALUE_TYPE(switches::kDisableAcceleratedVideoDecode), 1086 SINGLE_VALUE_TYPE(switches::kDisableAcceleratedVideoDecode),
1087 }, 1087 },
1088 {
1089 "enable-contacts",
1090 IDS_FLAGS_ENABLE_CONTACTS_NAME,
1091 IDS_FLAGS_ENABLE_CONTACTS_DESCRIPTION,
1092 kOsCrOS,
1093 SINGLE_VALUE_TYPE(switches::kEnableContacts)
1094 },
1095 #if defined(USE_ASH) 1088 #if defined(USE_ASH)
1096 { 1089 {
1097 "ash-debug-shortcuts", 1090 "ash-debug-shortcuts",
1098 IDS_FLAGS_DEBUG_SHORTCUTS_NAME, 1091 IDS_FLAGS_DEBUG_SHORTCUTS_NAME,
1099 IDS_FLAGS_DEBUG_SHORTCUTS_DESCRIPTION, 1092 IDS_FLAGS_DEBUG_SHORTCUTS_DESCRIPTION,
1100 kOsAll, 1093 kOsAll,
1101 SINGLE_VALUE_TYPE(ash::switches::kAshDebugShortcuts), 1094 SINGLE_VALUE_TYPE(ash::switches::kAshDebugShortcuts),
1102 }, 1095 },
1103 { "ash-alternate-caption-button", 1096 { "ash-alternate-caption-button",
1104 IDS_FLAGS_ASH_FRAME_CAPTION_BUTTON_STYLE_NAME, 1097 IDS_FLAGS_ASH_FRAME_CAPTION_BUTTON_STYLE_NAME,
(...skipping 1283 matching lines...) Expand 10 before | Expand all | Expand 10 after
2388 } 2381 }
2389 2382
2390 const Experiment* GetExperiments(size_t* count) { 2383 const Experiment* GetExperiments(size_t* count) {
2391 *count = num_experiments; 2384 *count = num_experiments;
2392 return experiments; 2385 return experiments;
2393 } 2386 }
2394 2387
2395 } // namespace testing 2388 } // namespace testing
2396 2389
2397 } // namespace about_flags 2390 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/autocomplete/autocomplete_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698