| 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 854 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   865     SINGLE_VALUE_TYPE(switches::kEnableBackgroundLoader) |   865     SINGLE_VALUE_TYPE(switches::kEnableBackgroundLoader) | 
|   866   }, |   866   }, | 
|   867   { |   867   { | 
|   868     "enable-bezel-touch", |   868     "enable-bezel-touch", | 
|   869     IDS_ENABLE_BEZEL_TOUCH_NAME, |   869     IDS_ENABLE_BEZEL_TOUCH_NAME, | 
|   870     IDS_ENABLE_BEZEL_TOUCH_DESCRIPTION, |   870     IDS_ENABLE_BEZEL_TOUCH_DESCRIPTION, | 
|   871     kOsCrOS, |   871     kOsCrOS, | 
|   872     SINGLE_VALUE_TYPE(switches::kEnableBezelTouch) |   872     SINGLE_VALUE_TYPE(switches::kEnableBezelTouch) | 
|   873   }, |   873   }, | 
|   874   { |   874   { | 
 |   875     "enable-screensaver-extension", | 
 |   876     IDS_ENABLE_SCREENSAVER_EXTENSION_NAME, | 
 |   877     IDS_ENABLE_SCREENSAVER_EXTENSION_DESCRIPTION, | 
 |   878     kOsCrOS, | 
 |   879     SINGLE_VALUE_TYPE(chromeos::switches::kEnableScreensaverExtensions) | 
 |   880   }, | 
 |   881   { | 
|   875     "no-discard-tabs", |   882     "no-discard-tabs", | 
|   876     IDS_FLAGS_NO_DISCARD_TABS_NAME, |   883     IDS_FLAGS_NO_DISCARD_TABS_NAME, | 
|   877     IDS_FLAGS_NO_DISCARD_TABS_DESCRIPTION, |   884     IDS_FLAGS_NO_DISCARD_TABS_DESCRIPTION, | 
|   878     kOsCrOS, |   885     kOsCrOS, | 
|   879     SINGLE_VALUE_TYPE(switches::kNoDiscardTabs) |   886     SINGLE_VALUE_TYPE(switches::kNoDiscardTabs) | 
|   880   }, |   887   }, | 
|   881 #endif |   888 #endif | 
|   882   { |   889   { | 
|   883     "enable-download-resumption", |   890     "enable-download-resumption", | 
|   884     IDS_FLAGS_ENABLE_DOWNLOAD_RESUMPTION_NAME, |   891     IDS_FLAGS_ENABLE_DOWNLOAD_RESUMPTION_NAME, | 
| (...skipping 802 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1687 } |  1694 } | 
|  1688  |  1695  | 
|  1689 const Experiment* GetExperiments(size_t* count) { |  1696 const Experiment* GetExperiments(size_t* count) { | 
|  1690   *count = num_experiments; |  1697   *count = num_experiments; | 
|  1691   return experiments; |  1698   return experiments; | 
|  1692 } |  1699 } | 
|  1693  |  1700  | 
|  1694 }  // namespace testing |  1701 }  // namespace testing | 
|  1695  |  1702  | 
|  1696 }  // namespace about_flags |  1703 }  // namespace about_flags | 
| OLD | NEW |