Home | History | Annotate | Download | only in base

Lines Matching refs:Notify

34 //    * Any thread may trigger a notification via Notify().
51 // will notify its regular ObserverList.
109 // If there is not a current MessageLoop, it is impossible to notify on it,
165 // Notify methods.
168 // that at the completion of the Notify call that all Observers have
171 void Notify(Method m) {
173 Notify<Method, Tuple0>(method);
177 void Notify(Method m, const A& a) {
179 Notify<Method, Tuple1<A> >(method);
183 void Notify(Method m, const A& a, const B& b) {
186 Notify<Method, Tuple2<A, B> >(method);
190 void Notify(Method m, const A& a, const B& b, const C& c) {
193 Notify<Method, Tuple3<A, B, C> >(method);
197 void Notify(Method m, const A& a, const B& b, const C& c, const D& d) {
200 Notify<Method, Tuple4<A, B, C, D> >(method);
203 // TODO(mbelshe): Add more wrappers for Notify() with more arguments.
226 void Notify(const UnboundMethod<ObserverType, Method, Params>& method) {