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

Unified Diff: chrome/service/cloud_print/cloud_print_proxy.cc

Issue 864163003: Rename base::Process::pid() to Pid() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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/service/cloud_print/cloud_print_proxy.cc
diff --git a/chrome/service/cloud_print/cloud_print_proxy.cc b/chrome/service/cloud_print/cloud_print_proxy.cc
index ae56186b61d9818604d855f702dcdb2a48d61884..a98fecb4e5be00535e0fbadc089dfbf963b6ae31 100644
--- a/chrome/service/cloud_print/cloud_print_proxy.cc
+++ b/chrome/service/cloud_print/cloud_print_proxy.cc
@@ -45,7 +45,7 @@ void LaunchBrowserProcessWithSwitch(const std::string& switch_string) {
#if defined(OS_POSIX) && !defined(OS_MACOSX)
base::Process process = base::LaunchProcess(cmd_line, base::LaunchOptions());
if (process.IsValid())
- base::EnsureProcessGetsReaped(process.pid());
+ base::EnsureProcessGetsReaped(process.Pid());
#else
base::LaunchOptions launch_options;
#if defined(OS_WIN)

Powered by Google App Engine
This is Rietveld 408576698