OLD | NEW |
(Empty) | |
| 1 // Copyright 2013 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. |
| 4 |
| 5 #include "components/variations/processed_study.h" |
| 6 |
| 7 #include "components/variations/proto/study.pb.h" |
| 8 |
| 9 namespace chrome_variations { |
| 10 |
| 11 ProcessedStudy::ProcessedStudy(const Study* study, |
| 12 base::FieldTrial::Probability total_probability, |
| 13 bool is_expired) |
| 14 : study(study), |
| 15 total_probability(total_probability), |
| 16 is_expired(is_expired) { |
| 17 } |
| 18 |
| 19 ProcessedStudy::~ProcessedStudy() { |
| 20 } |
| 21 |
| 22 } // namespace chrome_variations |
OLD | NEW |