Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(351)

Unified Diff: ppapi/proxy/ppapi_proxy_test.cc

Issue 1162943002: Replace more ObserverList with base::ObserverList. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@observer
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/proxy/host_dispatcher.h ('k') | remoting/client/plugin/delegating_signal_strategy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppapi_proxy_test.cc
diff --git a/ppapi/proxy/ppapi_proxy_test.cc b/ppapi/proxy/ppapi_proxy_test.cc
index 2b0667c6dbbee332408df8ec354cbcd42c208256..825cf7c340e44cbe149e8ee97f98db58d057cbd9 100644
--- a/ppapi/proxy/ppapi_proxy_test.cc
+++ b/ppapi/proxy/ppapi_proxy_test.cc
@@ -62,10 +62,11 @@ PPB_Proxy_Private ppb_proxy_private = {
// for the PluginProxyTestHarness and should only respond for PPP interfaces,
// and the other handler is for the HostProxyTestHarness which should only
// ever respond for PPB interfaces.
-ObserverList<ProxyTestHarnessBase> get_interface_handlers_;
+base::ObserverList<ProxyTestHarnessBase> get_interface_handlers_;
const void* MockGetInterface(const char* name) {
- ObserverList<ProxyTestHarnessBase>::Iterator it(&get_interface_handlers_);
+ base::ObserverList<ProxyTestHarnessBase>::Iterator it(
+ &get_interface_handlers_);
while (ProxyTestHarnessBase* observer = it.GetNext()) {
const void* interface = observer->GetInterface(name);
if (interface)
« no previous file with comments | « ppapi/proxy/host_dispatcher.h ('k') | remoting/client/plugin/delegating_signal_strategy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698