Chromium Code Reviews| Index: chrome/app/breakpad_field_trial_win.cc |
| diff --git a/chrome/app/breakpad_field_trial_win.cc b/chrome/app/breakpad_field_trial_win.cc |
| index a0dc54457c1a2d61d2edcd52a39c391646e87d49..f21cc93fc8b381ddd42fbd692b1b875c79b95020 100644 |
| --- a/chrome/app/breakpad_field_trial_win.cc |
| +++ b/chrome/app/breakpad_field_trial_win.cc |
| @@ -12,7 +12,7 @@ |
| #include "chrome/app/breakpad_win.h" |
| #include "chrome/common/child_process_logging.h" |
| -extern "C" void __declspec(dllexport) __cdecl SetExperimentList( |
| +extern "C" void __declspec(dllexport) __cdecl SetExperimentList2( |
|
Sigurður Ásgeirsson
2012/05/23 21:30:31
Please add a comment here explaining that it's cri
eroman
2012/05/23 21:45:13
Done.
|
| const wchar_t** experiment_strings, size_t experiment_strings_size) { |
| // Make sure we were initialized before we start writing data |
| if (breakpad_win::g_experiment_chunks_offset == 0) |
| @@ -68,7 +68,7 @@ namespace testing { |
| void SetExperimentList(const std::vector<string16>& experiment_strings) { |
| std::vector<const wchar_t*> cstrings; |
| StringVectorToCStringVector(experiment_strings, &cstrings); |
| - ::SetExperimentList(&cstrings[0], cstrings.size()); |
| + ::SetExperimentList2(&cstrings[0], cstrings.size()); |
| } |
| } // namespace testing |