Chromium Code Reviews| Index: components/version_ui/version_handler_helper.cc |
| diff --git a/components/version_ui/version_handler_helper.cc b/components/version_ui/version_handler_helper.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..90e4ccfb9756c1838535d5479ef79625892c171e |
| --- /dev/null |
| +++ b/components/version_ui/version_handler_helper.cc |
| @@ -0,0 +1,45 @@ |
| +// Copyright 2015 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include "components/version_ui/version_handler_helper.h" |
| + |
| +#include <vector> |
| + |
| +#include "base/metrics/field_trial.h" |
| +#include "base/strings/string_util.h" |
| +#include "base/values.h" |
| +#include "components/variations/active_field_trials.h" |
| + |
| +namespace version_ui { |
| + |
| +scoped_ptr<base::Value> GetVariationsList() { |
| + std::vector<std::string> variations; |
| +#if !defined(NDEBUG) |
| + base::FieldTrial::ActiveGroups active_groups; |
| + base::FieldTrialList::GetActiveFieldTrialGroups(&active_groups); |
| + |
| + const unsigned char kNonBreakingHyphenUTF8[] = {0xE2, 0x80, 0x91, '\0'}; |
| + const std::string kNonBreakingHyphenUTF8String( |
| + reinterpret_cast<const char*>(kNonBreakingHyphenUTF8)); |
| + for (size_t i = 0; i < active_groups.size(); ++i) { |
| + std::string line = |
| + active_groups[i].trial_name + ":" + active_groups[i].group_name; |
| + base::ReplaceChars(line, "-", kNonBreakingHyphenUTF8String, &line); |
| + variations.push_back(line); |
| + } |
| +#else |
| + // In release mode, display the hashes only. |
| + variations::GetFieldTrialActiveGroupIdsAsStrings(&variations); |
| +#endif |
| + |
| + scoped_ptr<base::ListValue> variations_list(new base::ListValue); |
| + for (std::vector<std::string>::const_iterator it = variations.begin(); |
| + it != variations.end(); ++it) { |
|
Dan Beam
2015/10/26 18:44:51
nit: can we just to for ( : )?
droger
2015/10/27 10:06:49
Done.
|
| + variations_list->Append(new base::StringValue(*it)); |
| + } |
| + |
| + return variations_list.Pass(); |
| +} |
| + |
| +} // namespace version_ui |