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

Unified Diff: chrome/installer/gcapi/gcapi_test.cc

Issue 23579003: GCAPI should append to the existing experiment_labels instead of clobbering them. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review 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
Index: chrome/installer/gcapi/gcapi_test.cc
diff --git a/chrome/installer/gcapi/gcapi_test.cc b/chrome/installer/gcapi/gcapi_test.cc
index 68633e0a93a6d6434dae1412154e3a9bfd793a75..477b15a98ea7bac58eef52cbb6ba2d99ed47dbe0 100644
--- a/chrome/installer/gcapi/gcapi_test.cc
+++ b/chrome/installer/gcapi/gcapi_test.cc
@@ -4,6 +4,7 @@
#include <stdio.h>
+#include "base/at_exit.h"
#include "base/command_line.h"
#include "chrome/installer/gcapi/gcapi.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -60,6 +61,7 @@ void call_dynamically() {
const char kManualLaunchTests[] = "launch-chrome";
int main(int argc, char* argv[]) {
+ base::AtExitManager exit_manager;
CommandLine::Init(argc, argv);
testing::InitGoogleTest(&argc, argv);

Powered by Google App Engine
This is Rietveld 408576698