Only grant permissions to new extensions from sync if they have the expected version
[chromium-blink-merge.git] / components / variations / variations_util.cc
blob8d4a1a43d738ecdde2fe4c54f7112e8600bd7ec6
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "components/variations/variations_util.h"
7 #include <vector>
9 #include "components/crash_keys/crash_keys.h"
10 #include "components/variations/active_field_trials.h"
12 namespace variations {
14 void SetVariationListCrashKeys() {
15 std::vector<std::string> experiment_strings;
16 GetFieldTrialActiveGroupIdsAsStrings(&experiment_strings);
17 crash_keys::SetVariationsList(experiment_strings);
20 } // namespace variations