| OLD | NEW |
| 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 <set> | 7 #include <set> |
| 8 #include <utility> | 8 #include <utility> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 1357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1368 if (group == "Enabled") | 1368 if (group == "Enabled") |
| 1369 command_line->AppendSwitch(switches::kEnableOfflineLoadStaleCache); | 1369 command_line->AppendSwitch(switches::kEnableOfflineLoadStaleCache); |
| 1370 } | 1370 } |
| 1371 } | 1371 } |
| 1372 | 1372 |
| 1373 // Please keep this in alphabetical order. | 1373 // Please keep this in alphabetical order. |
| 1374 static const char* const kSwitchNames[] = { | 1374 static const char* const kSwitchNames[] = { |
| 1375 autofill::switches::kDisableFillOnAccountSelect, | 1375 autofill::switches::kDisableFillOnAccountSelect, |
| 1376 autofill::switches::kDisablePasswordGeneration, | 1376 autofill::switches::kDisablePasswordGeneration, |
| 1377 autofill::switches::kEnableFillOnAccountSelect, | 1377 autofill::switches::kEnableFillOnAccountSelect, |
| 1378 autofill::switches::kEnableFillOnAccountSelectNoHighlighting, |
| 1378 autofill::switches::kEnablePasswordGeneration, | 1379 autofill::switches::kEnablePasswordGeneration, |
| 1379 autofill::switches::kEnableSingleClickAutofill, | 1380 autofill::switches::kEnableSingleClickAutofill, |
| 1380 autofill::switches::kIgnoreAutocompleteOffForAutofill, | 1381 autofill::switches::kIgnoreAutocompleteOffForAutofill, |
| 1381 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration, | 1382 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration, |
| 1382 autofill::switches::kRespectAutocompleteOffForAutofill, | 1383 autofill::switches::kRespectAutocompleteOffForAutofill, |
| 1383 #if defined(ENABLE_EXTENSIONS) | 1384 #if defined(ENABLE_EXTENSIONS) |
| 1384 extensions::switches::kAllowHTTPBackgroundPage, | 1385 extensions::switches::kAllowHTTPBackgroundPage, |
| 1385 extensions::switches::kAllowLegacyExtensionManifests, | 1386 extensions::switches::kAllowLegacyExtensionManifests, |
| 1386 extensions::switches::kEnableSurfaceWorker, | 1387 extensions::switches::kEnableSurfaceWorker, |
| 1387 extensions::switches::kEnableAppWindowControls, | 1388 extensions::switches::kEnableAppWindowControls, |
| (...skipping 1235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2623 switches::kDisableWebRtcEncryption, | 2624 switches::kDisableWebRtcEncryption, |
| 2624 }; | 2625 }; |
| 2625 to_command_line->CopySwitchesFrom(from_command_line, | 2626 to_command_line->CopySwitchesFrom(from_command_line, |
| 2626 kWebRtcDevSwitchNames, | 2627 kWebRtcDevSwitchNames, |
| 2627 arraysize(kWebRtcDevSwitchNames)); | 2628 arraysize(kWebRtcDevSwitchNames)); |
| 2628 } | 2629 } |
| 2629 } | 2630 } |
| 2630 #endif // defined(ENABLE_WEBRTC) | 2631 #endif // defined(ENABLE_WEBRTC) |
| 2631 | 2632 |
| 2632 } // namespace chrome | 2633 } // namespace chrome |
| OLD | NEW |