| Index: base/trace_event/memory_usage_estimator.h
|
| diff --git a/base/trace_event/memory_usage_estimator.h b/base/trace_event/memory_usage_estimator.h
|
| index 6f02bb93bbbcd155764945f67ab5a1a6056dc6d5..174429fa975a54b5a804bff9792448c5fbe3dfb6 100644
|
| --- a/base/trace_event/memory_usage_estimator.h
|
| +++ b/base/trace_event/memory_usage_estimator.h
|
| @@ -24,7 +24,6 @@
|
| #include "base/base_export.h"
|
| #include "base/containers/linked_list.h"
|
| #include "base/strings/string16.h"
|
| -#include "base/template_util.h"
|
|
|
| // Composable memory usage estimators.
|
| //
|
| @@ -207,7 +206,7 @@ template <class T>
|
| struct EMUCaller<
|
| T,
|
| typename std::enable_if<!HasEMU<T>::value &&
|
| - is_trivially_destructible<T>::value>::type> {
|
| + std::is_trivially_destructible<T>::value>::type> {
|
| static size_t Call(const T& value) { return 0; }
|
| };
|
|
|
|
|