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

Unified Diff: components/variations/processed_study.cc

Issue 59103009: Refactor VariationsSeedProcessor to add ProcessedStudy struct. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 1 month 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/variations/processed_study.h ('k') | components/variations/variations_seed_processor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/variations/processed_study.cc
===================================================================
--- components/variations/processed_study.cc (revision 0)
+++ components/variations/processed_study.cc (working copy)
@@ -0,0 +1,22 @@
+// Copyright 2013 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/variations/processed_study.h"
+
+#include "components/variations/proto/study.pb.h"
+
+namespace chrome_variations {
+
+ProcessedStudy::ProcessedStudy(const Study* study,
+ base::FieldTrial::Probability total_probability,
+ bool is_expired)
+ : study(study),
+ total_probability(total_probability),
+ is_expired(is_expired) {
+}
+
+ProcessedStudy::~ProcessedStudy() {
+}
+
+} // namespace chrome_variations
« no previous file with comments | « components/variations/processed_study.h ('k') | components/variations/variations_seed_processor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698