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

Unified Diff: chromeos/dbus/metronome_client.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 | « chromeos/dbus/leadership_daemon_manager_client.cc ('k') | chromeos/dbus/nfc_adapter_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/metronome_client.cc
diff --git a/chromeos/dbus/metronome_client.cc b/chromeos/dbus/metronome_client.cc
index be3a8b676db4baa4fa4bd79583b459e617aa52a6..e1e70dd0cb5634e1f6ca3f4d391842e86996ee25 100644
--- a/chromeos/dbus/metronome_client.cc
+++ b/chromeos/dbus/metronome_client.cc
@@ -65,7 +65,7 @@ class MetronomeClientImpl : public MetronomeClient {
bool signal_connected_;
// List of observers interested in event notifications from us.
- ObserverList<Observer> observers_;
+ base::ObserverList<Observer> observers_;
// Note: This should remain the last member so it'll be destroyed and
// invalidate its weak pointers before any other members are destroyed.
@@ -166,7 +166,7 @@ class MetronomeClientFakeImpl : public MetronomeClient {
base::RepeatingTimer<MetronomeClientFakeImpl> beacon_timer_;
// List of observers interested in event notifications from us.
- ObserverList<Observer> observers_;
+ base::ObserverList<Observer> observers_;
DISALLOW_COPY_AND_ASSIGN(MetronomeClientFakeImpl);
};
« no previous file with comments | « chromeos/dbus/leadership_daemon_manager_client.cc ('k') | chromeos/dbus/nfc_adapter_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698