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

Unified Diff: services/service_manager/runner/host/child_process_host_unittest.cc

Issue 2578183003: Use .service.exe extension for service binaries on Windows (Closed)
Patch Set: Created 4 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 | « services/service_manager/public/cpp/service.gni ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/service_manager/runner/host/child_process_host_unittest.cc
diff --git a/services/service_manager/runner/host/child_process_host_unittest.cc b/services/service_manager/runner/host/child_process_host_unittest.cc
index a88049291e83a2ba5ed6672a363e35fc68414a28..ea3f5e27f983110b637e1ec9c9b749761672eb2a 100644
--- a/services/service_manager/runner/host/child_process_host_unittest.cc
+++ b/services/service_manager/runner/host/child_process_host_unittest.cc
@@ -29,8 +29,14 @@ namespace {
const char kTestServiceName[] = "host_test_service";
const base::FilePath::CharType kPackagesPath[] = FILE_PATH_LITERAL("Packages");
+
+#if defined(OS_WIN)
+const base::FilePath::CharType kServiceExtension[] =
+ FILE_PATH_LITERAL(".service.exe");
+#else
const base::FilePath::CharType kServiceExtension[] =
FILE_PATH_LITERAL(".service");
+#endif
void ProcessReadyCallbackAdapater(const base::Closure& callback,
base::ProcessId process_id) {
« no previous file with comments | « services/service_manager/public/cpp/service.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698