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

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

Issue 14401013: Delete MacVDA from the codebase since it is dead code and not being worked on. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove pointless flag from linux & mac 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 | content/common/gpu/media/avc_config_record_builder.h » ('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 1082 matching lines...) Expand 10 before | Expand all | Expand 10 after
1093 { 1093 {
1094 "enable-new-dialog-style", 1094 "enable-new-dialog-style",
1095 IDS_FLAGS_ENABLE_NEW_DIALOG_STYLE_NAME, 1095 IDS_FLAGS_ENABLE_NEW_DIALOG_STYLE_NAME,
1096 IDS_FLAGS_ENABLE_NEW_DIALOG_STYLE_DESCRIPTION, 1096 IDS_FLAGS_ENABLE_NEW_DIALOG_STYLE_DESCRIPTION,
1097 kOsWin | kOsCrOS, 1097 kOsWin | kOsCrOS,
1098 SINGLE_VALUE_TYPE(switches::kEnableNewDialogStyle), 1098 SINGLE_VALUE_TYPE(switches::kEnableNewDialogStyle),
1099 }, 1099 },
1100 { "disable-accelerated-video-decode", 1100 { "disable-accelerated-video-decode",
1101 IDS_FLAGS_DISABLE_ACCELERATED_VIDEO_DECODE_NAME, 1101 IDS_FLAGS_DISABLE_ACCELERATED_VIDEO_DECODE_NAME,
1102 IDS_FLAGS_DISABLE_ACCELERATED_VIDEO_DECODE_DESCRIPTION, 1102 IDS_FLAGS_DISABLE_ACCELERATED_VIDEO_DECODE_DESCRIPTION,
1103 kOsDesktop, 1103 kOsWin | kOsCrOS,
1104 SINGLE_VALUE_TYPE(switches::kDisableAcceleratedVideoDecode), 1104 SINGLE_VALUE_TYPE(switches::kDisableAcceleratedVideoDecode),
1105 }, 1105 },
1106 #if defined(USE_ASH) 1106 #if defined(USE_ASH)
1107 { 1107 {
1108 "ash-debug-shortcuts", 1108 "ash-debug-shortcuts",
1109 IDS_FLAGS_DEBUG_SHORTCUTS_NAME, 1109 IDS_FLAGS_DEBUG_SHORTCUTS_NAME,
1110 IDS_FLAGS_DEBUG_SHORTCUTS_DESCRIPTION, 1110 IDS_FLAGS_DEBUG_SHORTCUTS_DESCRIPTION,
1111 kOsAll, 1111 kOsAll,
1112 SINGLE_VALUE_TYPE(ash::switches::kAshDebugShortcuts), 1112 SINGLE_VALUE_TYPE(ash::switches::kAshDebugShortcuts),
1113 }, 1113 },
(...skipping 786 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 | « no previous file | content/common/gpu/media/avc_config_record_builder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698