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

Unified Diff: chrome/test/perf/run_all_perfuitests.cc

Issue 14273023: Rebuild test history databases when starting up performance_ui_tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to ToT (and redo changes from TopSites to TopSitesImpl) Created 7 years, 8 months 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/test/perf/run_all_perfuitests.cc
diff --git a/build/android/tests/multiple_proguards/src/dummy/DummyActivity.java b/chrome/test/perf/run_all_perfuitests.cc
similarity index 50%
copy from build/android/tests/multiple_proguards/src/dummy/DummyActivity.java
copy to chrome/test/perf/run_all_perfuitests.cc
index 291a8100f394307d471d69237eee321c2a5fcc7f..5ce62ab3ab2c71b393faec34c558d2c56ec2ac12 100644
--- a/build/android/tests/multiple_proguards/src/dummy/DummyActivity.java
+++ b/chrome/test/perf/run_all_perfuitests.cc
@@ -2,13 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-package dummy;
+#include "chrome/test/perf/perf_ui_test_suite.h"
-import android.app.Activity;
-import android.os.Bundle;
-
-/**
- * Dummy activity to build apk.
- */
-public class DummyActivity extends Activity {
+int main(int argc, char **argv) {
+ base::PlatformThread::SetName("Tests_Main");
+ return PerfUITestSuite(argc, argv).Run();
}
+

Powered by Google App Engine
This is Rietveld 408576698