| Index: base/observer_list_threadsafe.h
|
| diff --git a/base/observer_list_threadsafe.h b/base/observer_list_threadsafe.h
|
| index e0ce0daa90f74e5db7ddef6bb250f70f35989c61..7ac1d6b41718991704fcc4795aeab7d38dbf43a1 100644
|
| --- a/base/observer_list_threadsafe.h
|
| +++ b/base/observer_list_threadsafe.h
|
| @@ -172,8 +172,8 @@ class ObserverListThreadSafe
|
| void Notify(const tracked_objects::Location& from_here,
|
| Method m,
|
| const Params&... params) {
|
| - UnboundMethod<ObserverType, Method, Tuple<Params...>> method(
|
| - m, MakeTuple(params...));
|
| + UnboundMethod<ObserverType, Method, base::Tuple<Params...>> method(
|
| + m, base::MakeTuple(params...));
|
|
|
| base::AutoLock lock(list_lock_);
|
| for (const auto& entry : observer_lists_) {
|
| @@ -182,7 +182,7 @@ class ObserverListThreadSafe
|
| from_here,
|
| base::Bind(
|
| &ObserverListThreadSafe<ObserverType>::template NotifyWrapper<
|
| - Method, Tuple<Params...>>,
|
| + Method, base::Tuple<Params...>>,
|
| this, context, method));
|
| }
|
| }
|
|
|