| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/common/chrome_features.h" | 5 #include "chrome/common/chrome_features.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "chrome/common/chrome_switches.h" | 8 #include "chrome/common/chrome_switches.h" |
| 9 #include "extensions/features/features.h" | 9 #include "extensions/features/features.h" |
| 10 #include "ppapi/features/features.h" | 10 #include "ppapi/features/features.h" |
| (...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 | 369 |
| 370 // Enables or disables flash component updates on Chrome OS. | 370 // Enables or disables flash component updates on Chrome OS. |
| 371 const base::Feature kCrosCompUpdates{"CrosCompUpdates", | 371 const base::Feature kCrosCompUpdates{"CrosCompUpdates", |
| 372 base::FEATURE_ENABLED_BY_DEFAULT}; | 372 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 373 | 373 |
| 374 // Enables or disables Chrome OS Component updates on Chrome OS. | 374 // Enables or disables Chrome OS Component updates on Chrome OS. |
| 375 const base::Feature kCrOSComponent{"CrOSComponent", | 375 const base::Feature kCrOSComponent{"CrOSComponent", |
| 376 base::FEATURE_DISABLED_BY_DEFAULT}; | 376 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 377 #endif // defined(OS_CHROMEOS) | 377 #endif // defined(OS_CHROMEOS) |
| 378 | 378 |
| 379 // Enables or disables Page Load Metrics using mojo IPC. | |
| 380 const base::Feature kPageLoadMetricsMojofication{ | |
| 381 "PLMMojofication", base::FEATURE_DISABLED_BY_DEFAULT}; | |
| 382 | |
| 383 bool PrefServiceEnabled() { | 379 bool PrefServiceEnabled() { |
| 384 return base::FeatureList::IsEnabled(features::kPrefService) || | 380 return base::FeatureList::IsEnabled(features::kPrefService) || |
| 385 #if BUILDFLAG(ENABLE_PACKAGE_MASH_SERVICES) | 381 #if BUILDFLAG(ENABLE_PACKAGE_MASH_SERVICES) |
| 386 base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII( | 382 base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII( |
| 387 switches::kMusConfig) == switches::kMash; | 383 switches::kMusConfig) == switches::kMash; |
| 388 #else | 384 #else |
| 389 false; | 385 false; |
| 390 #endif | 386 #endif |
| 391 } | 387 } |
| 392 | 388 |
| 393 } // namespace features | 389 } // namespace features |
| OLD | NEW |