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

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

Issue 9639: Port flush_cache tool. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 12 years 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 | « chrome/chrome.scons ('k') | chrome/test/perf/perftests.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/perf/perftests.cc
===================================================================
--- chrome/test/perf/perftests.cc (revision 6884)
+++ chrome/test/perf/perftests.cc (working copy)
@@ -2,6 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include "base/at_exit.h"
+#include "base/command_line.h"
+#include "base/debug_util.h"
#include "base/message_loop.h"
#include "base/perftimer.h"
#include "base/process_util.h"
@@ -11,7 +14,9 @@
// TODO(darin): share code with base/run_all_perftests.cc
int main(int argc, char **argv) {
+ base::AtExitManager exit_manager;
base::EnableTerminationOnHeapCorruption();
+ CommandLine::SetArgcArgv(argc, argv);
chrome::RegisterPathProvider();
MessageLoop main_message_loop;
@@ -43,8 +48,8 @@
// Raise to high priority to have more precise measurements. Since we don't
// aim at 1% precision, it is not necessary to run at realtime level.
- if (!IsDebuggerPresent()) {
- SetPriorityClass(GetCurrentProcess(), HIGH_PRIORITY_CLASS);
+ if (!DebugUtil::BeingDebugged()) {
+ base::RaiseProcessToHighPriority();
}
int result = RUN_ALL_TESTS();
« no previous file with comments | « chrome/chrome.scons ('k') | chrome/test/perf/perftests.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698