Index: third_party/WebKit/Source/platform/wtf/ProcessMetrics.h |
diff --git a/third_party/WebKit/Source/platform/wtf/ProcessMetrics.h b/third_party/WebKit/Source/platform/wtf/ProcessMetrics.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d6d50a1aea05343b0546e96d2b1769519850cf85 |
--- /dev/null |
+++ b/third_party/WebKit/Source/platform/wtf/ProcessMetrics.h |
@@ -0,0 +1,17 @@ |
+// Copyright (c) 2017 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef ProcessMetrics_h |
+#define ProcessMetrics_h |
+ |
+#include "base/process/process_metrics.h" |
+ |
+namespace WTF { |
+ |
+using base::GetMallocUsage; |
+using base::GetPartitionAllocUsage; |
+ |
+} // namespace WTF |
+ |
+#endif // ProcessMetrics_h |