OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 // Implementation of about_flags for iOS that sets flags based on experimental | 5 // Implementation of about_flags for iOS that sets flags based on experimental |
6 // settings. | 6 // settings. |
7 | 7 |
8 #include "ios/chrome/browser/about_flags.h" | 8 #include "ios/chrome/browser/about_flags.h" |
9 | 9 |
10 #include <stddef.h> | 10 #include <stddef.h> |
11 #include <stdint.h> | 11 #include <stdint.h> |
12 #import <UIKit/UIKit.h> | 12 #import <UIKit/UIKit.h> |
13 | 13 |
14 #include "base/bind.h" | 14 #include "base/bind.h" |
15 #include "base/command_line.h" | 15 #include "base/command_line.h" |
16 #include "base/logging.h" | 16 #include "base/logging.h" |
17 #include "base/macros.h" | 17 #include "base/macros.h" |
18 #include "base/memory/singleton.h" | 18 #include "base/memory/singleton.h" |
19 #include "base/strings/stringprintf.h" | 19 #include "base/strings/stringprintf.h" |
20 #include "base/strings/sys_string_conversions.h" | 20 #include "base/strings/sys_string_conversions.h" |
21 #include "base/sys_info.h" | 21 #include "base/sys_info.h" |
22 #include "components/dom_distiller/core/dom_distiller_switches.h" | 22 #include "components/dom_distiller/core/dom_distiller_switches.h" |
23 #include "components/flags_ui/feature_entry.h" | 23 #include "components/flags_ui/feature_entry.h" |
24 #include "components/flags_ui/feature_entry_macros.h" | 24 #include "components/flags_ui/feature_entry_macros.h" |
25 #include "components/flags_ui/flags_storage.h" | 25 #include "components/flags_ui/flags_storage.h" |
26 #include "components/flags_ui/flags_ui_switches.h" | 26 #include "components/flags_ui/flags_ui_switches.h" |
27 #include "components/strings/grit/components_strings.h" | 27 #include "components/strings/grit/components_strings.h" |
28 #include "components/sync_driver/sync_driver_switches.h" | 28 #include "components/sync/driver/sync_driver_switches.h" |
29 #include "google_apis/gaia/gaia_switches.h" | 29 #include "google_apis/gaia/gaia_switches.h" |
30 #include "ios/chrome/browser/chrome_switches.h" | 30 #include "ios/chrome/browser/chrome_switches.h" |
31 #include "ios/chrome/grit/ios_strings.h" | 31 #include "ios/chrome/grit/ios_strings.h" |
32 #include "ios/web/public/user_agent.h" | 32 #include "ios/web/public/user_agent.h" |
33 #include "ios/web/public/web_view_creation_util.h" | 33 #include "ios/web/public/web_view_creation_util.h" |
34 | 34 |
35 #if !defined(OFFICIAL_BUILD) | 35 #if !defined(OFFICIAL_BUILD) |
36 #include "components/variations/variations_switches.h" | 36 #include "components/variations/variations_switches.h" |
37 #endif | 37 #endif |
38 | 38 |
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 } | 289 } |
290 | 290 |
291 namespace testing { | 291 namespace testing { |
292 | 292 |
293 const flags_ui::FeatureEntry* GetFeatureEntries(size_t* count) { | 293 const flags_ui::FeatureEntry* GetFeatureEntries(size_t* count) { |
294 *count = arraysize(kFeatureEntries); | 294 *count = arraysize(kFeatureEntries); |
295 return kFeatureEntries; | 295 return kFeatureEntries; |
296 } | 296 } |
297 | 297 |
298 } // namespace testing | 298 } // namespace testing |
OLD | NEW |