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/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 1911 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1922 MULTI_VALUE_TYPE(kOriginChipChoices) | 1922 MULTI_VALUE_TYPE(kOriginChipChoices) |
1923 }, | 1923 }, |
1924 { | 1924 { |
1925 "search-button-in-omnibox", | 1925 "search-button-in-omnibox", |
1926 IDS_FLAGS_SEARCH_BUTTON_IN_OMNIBOX_NAME, | 1926 IDS_FLAGS_SEARCH_BUTTON_IN_OMNIBOX_NAME, |
1927 IDS_FLAGS_SEARCH_BUTTON_IN_OMNIBOX_DESCRIPTION, | 1927 IDS_FLAGS_SEARCH_BUTTON_IN_OMNIBOX_DESCRIPTION, |
1928 kOsCrOS | kOsMac | kOsWin, | 1928 kOsCrOS | kOsMac | kOsWin, |
1929 MULTI_VALUE_TYPE(kSearchButtonInOmniboxChoices) | 1929 MULTI_VALUE_TYPE(kSearchButtonInOmniboxChoices) |
1930 }, | 1930 }, |
1931 { | 1931 { |
1932 "disable-ignore-autocomplete-off", | 1932 "enable-ignore-autocomplete-off", |
1933 IDS_FLAGS_DISABLE_IGNORE_AUTOCOMPLETE_OFF_NAME, | 1933 IDS_FLAGS_ENABLE_IGNORE_AUTOCOMPLETE_OFF_NAME, |
1934 IDS_FLAGS_DISABLE_IGNORE_AUTOCOMPLETE_OFF_DESCRIPTION, | 1934 IDS_FLAGS_ENABLE_IGNORE_AUTOCOMPLETE_OFF_DESCRIPTION, |
1935 kOsAll, | 1935 kOsAll, |
1936 SINGLE_VALUE_TYPE(autofill::switches::kDisableIgnoreAutocompleteOff) | 1936 SINGLE_VALUE_TYPE(autofill::switches::kEnableIgnoreAutocompleteOff) |
1937 }, | 1937 }, |
1938 #if defined(USE_AURA) || defined(OS_WIN) | 1938 #if defined(USE_AURA) || defined(OS_WIN) |
1939 { | 1939 { |
1940 "enable-save-password-bubble", | 1940 "enable-save-password-bubble", |
1941 IDS_FLAGS_ENABLE_PASSWORD_BUBBLE_NAME, | 1941 IDS_FLAGS_ENABLE_PASSWORD_BUBBLE_NAME, |
1942 IDS_FLAGS_ENABLE_PASSWORD_BUBBLE_DESCRIPTION, | 1942 IDS_FLAGS_ENABLE_PASSWORD_BUBBLE_DESCRIPTION, |
1943 kOsWin | kOsCrOS, | 1943 kOsWin | kOsCrOS, |
1944 SINGLE_VALUE_TYPE(switches::kEnableSavePasswordBubble) | 1944 SINGLE_VALUE_TYPE(switches::kEnableSavePasswordBubble) |
1945 }, | 1945 }, |
1946 #endif | 1946 #endif |
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2487 } | 2487 } |
2488 | 2488 |
2489 const Experiment* GetExperiments(size_t* count) { | 2489 const Experiment* GetExperiments(size_t* count) { |
2490 *count = num_experiments; | 2490 *count = num_experiments; |
2491 return experiments; | 2491 return experiments; |
2492 } | 2492 } |
2493 | 2493 |
2494 } // namespace testing | 2494 } // namespace testing |
2495 | 2495 |
2496 } // namespace about_flags | 2496 } // namespace about_flags |
OLD | NEW |