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

Unified Diff: chrome/browser/process_singleton_browsertest.cc

Issue 12212048: Linux/ChromeOS Chromium style checker cleanup, chrome/browser edition. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 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/browser/process_singleton_browsertest.cc
===================================================================
--- chrome/browser/process_singleton_browsertest.cc (revision 181040)
+++ chrome/browser/process_singleton_browsertest.cc (working copy)
@@ -138,7 +138,7 @@
EXPECT_TRUE(temp_profile_dir_.CreateUniqueTempDir());
}
- void SetUp() {
+ virtual void SetUp() {
// Start the threads and create the starters.
for (size_t i = 0; i < kNbThreads; ++i) {
chrome_starter_threads_[i].reset(new base::Thread("ChromeStarter"));
@@ -148,7 +148,7 @@
}
}
- void TearDown() {
+ virtual void TearDown() {
// Stop the threads.
for (size_t i = 0; i < kNbThreads; ++i)
chrome_starter_threads_[i]->Stop();
@@ -168,7 +168,7 @@
explicit ProcessTreeFilter(base::ProcessId parent_pid) {
ancestor_pids_.insert(parent_pid);
}
- virtual bool Includes(const base::ProcessEntry & entry) const {
+ virtual bool Includes(const base::ProcessEntry & entry) const OVERRIDE {
if (ancestor_pids_.find(entry.parent_pid()) != ancestor_pids_.end()) {
ancestor_pids_.insert(entry.pid());
return true;

Powered by Google App Engine
This is Rietveld 408576698