Home | History | Annotate | Download | only in app
      1 // Copyright (c) 2012 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 #ifndef CHROME_APP_BREAKPAD_FIELD_TRIAL_WIN_H_
      6 #define CHROME_APP_BREAKPAD_FIELD_TRIAL_WIN_H_
      7 
      8 #include <vector>
      9 
     10 #include "base/strings/string16.h"
     11 
     12 namespace testing {
     13 
     14 // Sets the breakpad experiment chunks for testing. |chunks| is the list of
     15 // values to set, where each entry may contain multiple experiment tuples, with
     16 // the total number of experiments indicated by |experiments_chunks|.
     17 void SetExperimentChunks(const std::vector<string16>& chunks,
     18                          size_t experiments_count);
     19 
     20 }  // namespace testing
     21 
     22 #endif  // CHROME_APP_BREAKPAD_FIELD_TRIAL_WIN_H_
     23