Index: chrome/browser/safe_browsing/safe_browsing_database.cc |
diff --git a/chrome/browser/safe_browsing/safe_browsing_database.cc b/chrome/browser/safe_browsing/safe_browsing_database.cc |
index 8c7c0b5bf786163f245815e8d03ea6f7fb6d93df..c95a508a0103f8d4988569e071d4de5e9145fe78 100644 |
--- a/chrome/browser/safe_browsing/safe_browsing_database.cc |
+++ b/chrome/browser/safe_browsing/safe_browsing_database.cc |
@@ -12,7 +12,7 @@ |
#include "base/message_loop/message_loop.h" |
#include "base/metrics/histogram.h" |
#include "base/metrics/stats_counters.h" |
-#include "base/process/process.h" |
+#include "base/process/process_handle.h" |
#include "base/process/process_metrics.h" |
#include "base/sha1.h" |
#include "base/strings/string_number_conversions.h" |
@@ -1197,7 +1197,7 @@ int64 SafeBrowsingDatabaseNew::UpdateHashPrefixStore( |
void SafeBrowsingDatabaseNew::UpdateBrowseStore() { |
// Measure the amount of IO during the filter build. |
base::IoCounters io_before, io_after; |
- base::ProcessHandle handle = base::Process::Current().handle(); |
+ base::ProcessHandle handle = base::GetCurrentProcessHandle(); |
scoped_ptr<base::ProcessMetrics> metric( |
#if !defined(OS_MACOSX) |
base::ProcessMetrics::CreateProcessMetrics(handle) |