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

Unified Diff: base/win/startup_information_unittest.cc

Issue 10870093: Rename ScopedStartupInfoEx to StartupInformation and cleanup accesors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 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
« no previous file with comments | « base/win/startup_information.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/win/startup_information_unittest.cc
===================================================================
--- base/win/startup_information_unittest.cc (revision 153000)
+++ base/win/startup_information_unittest.cc (working copy)
@@ -10,7 +10,7 @@
#include "base/test/multiprocess_test.h"
#include "base/win/scoped_handle.h"
#include "base/win/scoped_process_information.h"
-#include "base/win/scoped_startup_info_ex.h"
+#include "base/win/startup_information.h"
#include "base/win/windows_version.h"
#include "testing/multiprocess_func_list.h"
@@ -31,15 +31,15 @@
return 0;
}
-class ScopedStartupInfoExTest : public base::MultiProcessTest {};
+class StartupInformationTest : public base::MultiProcessTest {};
// Verify that only the explicitly specified event is inherited.
-TEST_F(ScopedStartupInfoExTest, InheritStdOut) {
+TEST_F(StartupInformationTest, InheritStdOut) {
if (base::win::GetVersion() < base::win::VERSION_VISTA)
return;
base::win::ScopedProcessInformation process_info;
- base::win::ScopedStartupInfoEx startup_info;
+ base::win::StartupInformation startup_info;
HANDLE section = ::CreateFileMappingW(INVALID_HANDLE_VALUE, NULL,
PAGE_READWRITE, 0, kSectionSize,
« no previous file with comments | « base/win/startup_information.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698