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

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

Issue 1179653004: Remove non-impl-side painting as an option for blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removenoimplblink: . Created 5 years, 6 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
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 <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 1138 matching lines...) Expand 10 before | Expand all | Expand 10 after
1149 { 1149 {
1150 "enable-affiliation-based-matching", 1150 "enable-affiliation-based-matching",
1151 IDS_FLAGS_ENABLE_AFFILIATION_BASED_MATCHING_NAME, 1151 IDS_FLAGS_ENABLE_AFFILIATION_BASED_MATCHING_NAME,
1152 IDS_FLAGS_ENABLE_AFFILIATION_BASED_MATCHING_DESCRIPTION, 1152 IDS_FLAGS_ENABLE_AFFILIATION_BASED_MATCHING_DESCRIPTION,
1153 kOsWin | kOsLinux | kOsCrOS | kOsMac | kOsAndroid, 1153 kOsWin | kOsLinux | kOsCrOS | kOsMac | kOsAndroid,
1154 ENABLE_DISABLE_VALUE_TYPE( 1154 ENABLE_DISABLE_VALUE_TYPE(
1155 password_manager::switches::kEnableAffiliationBasedMatching, 1155 password_manager::switches::kEnableAffiliationBasedMatching,
1156 password_manager::switches::kDisableAffiliationBasedMatching) 1156 password_manager::switches::kDisableAffiliationBasedMatching)
1157 }, 1157 },
1158 { 1158 {
1159 "enable-deferred-image-decoding",
1160 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_NAME,
1161 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_DESCRIPTION,
1162 kOsMac | kOsLinux | kOsCrOS,
1163 SINGLE_VALUE_TYPE(switches::kEnableDeferredImageDecoding)
1164 },
1165 {
1166 "wallet-service-use-sandbox", 1159 "wallet-service-use-sandbox",
1167 IDS_FLAGS_WALLET_SERVICE_USE_SANDBOX_NAME, 1160 IDS_FLAGS_WALLET_SERVICE_USE_SANDBOX_NAME,
1168 IDS_FLAGS_WALLET_SERVICE_USE_SANDBOX_DESCRIPTION, 1161 IDS_FLAGS_WALLET_SERVICE_USE_SANDBOX_DESCRIPTION,
1169 kOsAndroid | kOsDesktop, 1162 kOsAndroid | kOsDesktop,
1170 ENABLE_DISABLE_VALUE_TYPE_AND_VALUE( 1163 ENABLE_DISABLE_VALUE_TYPE_AND_VALUE(
1171 autofill::switches::kWalletServiceUseSandbox, "1", 1164 autofill::switches::kWalletServiceUseSandbox, "1",
1172 autofill::switches::kWalletServiceUseSandbox, "0") 1165 autofill::switches::kWalletServiceUseSandbox, "0")
1173 }, 1166 },
1174 #if defined(USE_AURA) 1167 #if defined(USE_AURA)
1175 { 1168 {
(...skipping 1853 matching lines...) Expand 10 before | Expand all | Expand 10 after
3029 } 3022 }
3030 3023
3031 const Experiment* GetExperiments(size_t* count) { 3024 const Experiment* GetExperiments(size_t* count) {
3032 *count = num_experiments; 3025 *count = num_experiments;
3033 return experiments; 3026 return experiments;
3034 } 3027 }
3035 3028
3036 } // namespace testing 3029 } // namespace testing
3037 3030
3038 } // namespace about_flags 3031 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/chromeos/login/chrome_restart_request.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698