summaryrefslogtreecommitdiffstats
path: root/chrome/service
diff options
context:
space:
mode:
authorrvargas <rvargas@chromium.org>2015-01-23 16:27:25 -0800
committerCommit bot <commit-bot@chromium.org>2015-01-24 00:29:27 +0000
commit960db8860336db15dbdbe71ebbff318833697f81 (patch)
tree330c81b9f65a29b3237b55c33e4940cb20afe121 /chrome/service
parent9ec42b887a697f656b4df721dbde5cd08104af96 (diff)
downloadchromium_src-960db8860336db15dbdbe71ebbff318833697f81.zip
chromium_src-960db8860336db15dbdbe71ebbff318833697f81.tar.gz
chromium_src-960db8860336db15dbdbe71ebbff318833697f81.tar.bz2
Rename base::Process::pid() to Pid()
The method is not a simple accessor. BUG=417532 TBR=satorux@chromium.org (chromeos) TBR=siggi@chromium.org (browser_watcher) TBR=mseaborn@chromium.org (nacl) TBR=davidben@chromium.org (content) TBR=rsesek@chromium.org (sandbox) TBR=sadrul@chromium.org (ui) Review URL: https://codereview.chromium.org/864163003 Cr-Commit-Position: refs/heads/master@{#312978}
Diffstat (limited to 'chrome/service')
-rw-r--r--chrome/service/cloud_print/cloud_print_proxy.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/service/cloud_print/cloud_print_proxy.cc b/chrome/service/cloud_print/cloud_print_proxy.cc
index ae56186..a98fecb 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)