| 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 745 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 756   }, | 756   }, | 
| 757   { | 757   { | 
| 758     // See http://crbug.com/120416 for how to remove this flag. | 758     // See http://crbug.com/120416 for how to remove this flag. | 
| 759     "save-page-as-mhtml",  // FLAGS:RECORD_UMA | 759     "save-page-as-mhtml",  // FLAGS:RECORD_UMA | 
| 760     IDS_FLAGS_SAVE_PAGE_AS_MHTML_NAME, | 760     IDS_FLAGS_SAVE_PAGE_AS_MHTML_NAME, | 
| 761     IDS_FLAGS_SAVE_PAGE_AS_MHTML_DESCRIPTION, | 761     IDS_FLAGS_SAVE_PAGE_AS_MHTML_DESCRIPTION, | 
| 762     kOsMac | kOsWin | kOsLinux, | 762     kOsMac | kOsWin | kOsLinux, | 
| 763     SINGLE_VALUE_TYPE(switches::kSavePageAsMHTML) | 763     SINGLE_VALUE_TYPE(switches::kSavePageAsMHTML) | 
| 764   }, | 764   }, | 
| 765   { | 765   { | 
| 766     "enable-autologin", |  | 
| 767     IDS_FLAGS_ENABLE_AUTOLOGIN_NAME, |  | 
| 768     IDS_FLAGS_ENABLE_AUTOLOGIN_DESCRIPTION, |  | 
| 769     kOsMac | kOsWin | kOsLinux, |  | 
| 770     SINGLE_VALUE_TYPE(switches::kEnableAutologin) |  | 
| 771   }, |  | 
| 772   { |  | 
| 773     "enable-quic", | 766     "enable-quic", | 
| 774     IDS_FLAGS_ENABLE_QUIC_NAME, | 767     IDS_FLAGS_ENABLE_QUIC_NAME, | 
| 775     IDS_FLAGS_ENABLE_QUIC_DESCRIPTION, | 768     IDS_FLAGS_ENABLE_QUIC_DESCRIPTION, | 
| 776     kOsAll, | 769     kOsAll, | 
| 777     ENABLE_DISABLE_VALUE_TYPE(switches::kEnableQuic, | 770     ENABLE_DISABLE_VALUE_TYPE(switches::kEnableQuic, | 
| 778                               switches::kDisableQuic) | 771                               switches::kDisableQuic) | 
| 779   }, | 772   }, | 
| 780   { | 773   { | 
| 781     "enable-quic-https", | 774     "enable-quic-https", | 
| 782     IDS_FLAGS_ENABLE_QUIC_HTTPS_NAME, | 775     IDS_FLAGS_ENABLE_QUIC_HTTPS_NAME, | 
| (...skipping 1537 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 2320 } | 2313 } | 
| 2321 | 2314 | 
| 2322 const Experiment* GetExperiments(size_t* count) { | 2315 const Experiment* GetExperiments(size_t* count) { | 
| 2323   *count = num_experiments; | 2316   *count = num_experiments; | 
| 2324   return experiments; | 2317   return experiments; | 
| 2325 } | 2318 } | 
| 2326 | 2319 | 
| 2327 }  // namespace testing | 2320 }  // namespace testing | 
| 2328 | 2321 | 
| 2329 }  // namespace about_flags | 2322 }  // namespace about_flags | 
| OLD | NEW | 
|---|