Index: chrome/browser/lifetime/application_lifetime.cc |
diff --git a/chrome/browser/lifetime/application_lifetime.cc b/chrome/browser/lifetime/application_lifetime.cc |
index f02bd0666b44a9dae9dc768918ca69803795aecd..afe1d2c224b0aded6eb558d63bb958fe2b96558f 100644 |
--- a/chrome/browser/lifetime/application_lifetime.cc |
+++ b/chrome/browser/lifetime/application_lifetime.cc |
@@ -14,7 +14,7 @@ |
#include "base/metrics/field_trial.h" |
#include "base/prefs/pref_service.h" |
#include "base/process/kill.h" |
-#include "base/process/process.h" |
+#include "base/process/process_handle.h" |
#include "build/build_config.h" |
#include "chrome/browser/browser_process.h" |
#include "chrome/browser/browser_process_platform_part.h" |
@@ -309,7 +309,7 @@ void SessionEnding() { |
// termination as soon as it hides or destroys its windows. Since any |
// execution past that point will be non-deterministically cut short, we |
// might as well put ourselves out of that misery deterministically. |
- base::KillProcess(base::Process::Current().handle(), 0, false); |
+ base::KillProcess(base::GetCurrentProcessHandle(), 0, false); |
} |
} |