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

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

Issue 2080263002: Change fill-on-account-select to use Features API, not a custom flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unused GRD strings Created 4 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
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | chrome/renderer/DEPS » ('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/chrome_content_browser_client.h" 5 #include "chrome/browser/chrome_content_browser_client.h"
6 6
7 #include <map> 7 #include <map>
8 #include <set> 8 #include <set>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 1539 matching lines...) Expand 10 before | Expand all | Expand 10 after
1550 1550
1551 MaybeAppendBlinkSettingsSwitchForFieldTrial( 1551 MaybeAppendBlinkSettingsSwitchForFieldTrial(
1552 browser_command_line, command_line); 1552 browser_command_line, command_line);
1553 1553
1554 // Please keep this in alphabetical order. 1554 // Please keep this in alphabetical order.
1555 static const char* const kSwitchNames[] = { 1555 static const char* const kSwitchNames[] = {
1556 #if defined(OS_ANDROID) 1556 #if defined(OS_ANDROID)
1557 autofill::switches::kDisableAccessorySuggestionView, 1557 autofill::switches::kDisableAccessorySuggestionView,
1558 autofill::switches::kEnableAccessorySuggestionView, 1558 autofill::switches::kEnableAccessorySuggestionView,
1559 #endif 1559 #endif
1560 autofill::switches::kDisableFillOnAccountSelect,
1561 autofill::switches::kDisablePasswordGeneration, 1560 autofill::switches::kDisablePasswordGeneration,
1562 autofill::switches::kEnableFillOnAccountSelect,
1563 autofill::switches::kEnablePasswordGeneration, 1561 autofill::switches::kEnablePasswordGeneration,
1564 autofill::switches::kEnableSingleClickAutofill, 1562 autofill::switches::kEnableSingleClickAutofill,
1565 autofill::switches::kEnableSuggestionsWithSubstringMatch, 1563 autofill::switches::kEnableSuggestionsWithSubstringMatch,
1566 autofill::switches::kIgnoreAutocompleteOffForAutofill, 1564 autofill::switches::kIgnoreAutocompleteOffForAutofill,
1567 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration, 1565 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration,
1568 #if defined(ENABLE_EXTENSIONS) 1566 #if defined(ENABLE_EXTENSIONS)
1569 extensions::switches::kAllowHTTPBackgroundPage, 1567 extensions::switches::kAllowHTTPBackgroundPage,
1570 extensions::switches::kAllowLegacyExtensionManifests, 1568 extensions::switches::kAllowLegacyExtensionManifests,
1571 extensions::switches::kEnableAppWindowControls, 1569 extensions::switches::kEnableAppWindowControls,
1572 extensions::switches::kEnableEmbeddedExtensionOptions, 1570 extensions::switches::kEnableEmbeddedExtensionOptions,
(...skipping 1386 matching lines...) Expand 10 before | Expand all | Expand 10 after
2959 if (channel <= kMaxDisableEncryptionChannel) { 2957 if (channel <= kMaxDisableEncryptionChannel) {
2960 static const char* const kWebRtcDevSwitchNames[] = { 2958 static const char* const kWebRtcDevSwitchNames[] = {
2961 switches::kDisableWebRtcEncryption, 2959 switches::kDisableWebRtcEncryption,
2962 }; 2960 };
2963 to_command_line->CopySwitchesFrom(from_command_line, 2961 to_command_line->CopySwitchesFrom(from_command_line,
2964 kWebRtcDevSwitchNames, 2962 kWebRtcDevSwitchNames,
2965 arraysize(kWebRtcDevSwitchNames)); 2963 arraysize(kWebRtcDevSwitchNames));
2966 } 2964 }
2967 } 2965 }
2968 #endif // defined(ENABLE_WEBRTC) 2966 #endif // defined(ENABLE_WEBRTC)
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | chrome/renderer/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698