Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(135)

Side by Side Diff: chrome/common/chrome_features.cc

Issue 2823523003: [Page Load Metrics] PageLoadMetrics Mojofication. (Closed)
Patch Set: Add unit test for page_load_metrics_struct_traits Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 339
340 // Enables or disables flash component updates on Chrome OS. 340 // Enables or disables flash component updates on Chrome OS.
341 const base::Feature kCrosCompUpdates{"CrosCompUpdates", 341 const base::Feature kCrosCompUpdates{"CrosCompUpdates",
342 base::FEATURE_ENABLED_BY_DEFAULT}; 342 base::FEATURE_ENABLED_BY_DEFAULT};
343 343
344 // Enables or disables Chrome OS Component updates on Chrome OS. 344 // Enables or disables Chrome OS Component updates on Chrome OS.
345 const base::Feature kCrOSComponent{"CrOSComponent", 345 const base::Feature kCrOSComponent{"CrOSComponent",
346 base::FEATURE_DISABLED_BY_DEFAULT}; 346 base::FEATURE_DISABLED_BY_DEFAULT};
347 #endif // defined(OS_CHROMEOS) 347 #endif // defined(OS_CHROMEOS)
348 348
349 // Enables or disables Page Load Metrics using mojo IPC.
350 const base::Feature kPageLoadMetricsMojofication{
351 "PLMMojofication", base::FEATURE_DISABLED_BY_DEFAULT};
352
349 bool PrefServiceEnabled() { 353 bool PrefServiceEnabled() {
350 return base::FeatureList::IsEnabled(features::kPrefService) || 354 return base::FeatureList::IsEnabled(features::kPrefService) ||
351 #if BUILDFLAG(ENABLE_PACKAGE_MASH_SERVICES) 355 #if BUILDFLAG(ENABLE_PACKAGE_MASH_SERVICES)
352 base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII( 356 base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
353 switches::kMusConfig) == switches::kMash; 357 switches::kMusConfig) == switches::kMash;
354 #else 358 #else
355 false; 359 false;
356 #endif 360 #endif
357 } 361 }
358 362
359 } // namespace features 363 } // namespace features
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698