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

Unified Diff: components/version_ui/version_handler_helper.cc

Issue 1418653004: [iOS] Support for chrome://version (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comment from blundell Created 5 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/version_ui/version_handler_helper.h ('k') | ios/chrome/app/strings/ios_chromium_strings.grd » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..2a9c2a1c1e13dad4c77079059a9124fde519a405
--- /dev/null
+++ b/components/version_ui/version_handler_helper.cc
@@ -0,0 +1,44 @@
+// 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 (const auto& group : active_groups) {
+ std::string line = group.trial_name + ":" + group.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) {
+ variations_list->Append(new base::StringValue(*it));
+ }
+
+ return variations_list.Pass();
+}
+
+} // namespace version_ui
« no previous file with comments | « components/version_ui/version_handler_helper.h ('k') | ios/chrome/app/strings/ios_chromium_strings.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698