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

Unified Diff: chrome/browser/process_singleton_win_unittest.cc

Issue 2098713003: Moved a bunch of win-specific files to the new win folder in chrome/browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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_win_unittest.cc
diff --git a/chrome/browser/process_singleton_win_unittest.cc b/chrome/browser/process_singleton_win_unittest.cc
index d12791dbf405e3982f5dd97bb0a9908c9597467b..7c93d3817a799972bdf8a6a72070bc51201cbcfd 100644
--- a/chrome/browser/process_singleton_win_unittest.cc
+++ b/chrome/browser/process_singleton_win_unittest.cc
@@ -154,12 +154,12 @@ class ProcessSingletonTest : public base::MultiProcessTest {
ASSERT_NO_FATAL_FAILURE(base::MultiProcessTest::SetUp());
// Drop the process finder notification timeout to one second for testing.
- old_notification_timeout_ = chrome::SetNotificationTimeoutForTesting(
+ old_notification_timeout_ = chrome::win::SetNotificationTimeoutForTesting(
base::TimeDelta::FromSeconds(1));
}
void TearDown() override {
- chrome::SetNotificationTimeoutForTesting(old_notification_timeout_);
+ chrome::win::SetNotificationTimeoutForTesting(old_notification_timeout_);
if (browser_victim_.IsValid()) {
EXPECT_TRUE(::SetEvent(continue_event_.Get()));

Powered by Google App Engine
This is Rietveld 408576698