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

Unified Diff: sync/sessions/directory_type_debug_info_emitter.h

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 | « sync/js/sync_js_controller.h ('k') | sync/sessions/directory_type_debug_info_emitter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/sessions/directory_type_debug_info_emitter.h
diff --git a/sync/sessions/directory_type_debug_info_emitter.h b/sync/sessions/directory_type_debug_info_emitter.h
index 672367dadd54b854bc375db251f3d2436b513154..254e3f9e59e0f9dc9b8ca886cb79daaaf8ff6757 100644
--- a/sync/sessions/directory_type_debug_info_emitter.h
+++ b/sync/sessions/directory_type_debug_info_emitter.h
@@ -43,12 +43,12 @@ class SYNC_EXPORT_PRIVATE DirectoryTypeDebugInfoEmitter {
DirectoryTypeDebugInfoEmitter(
syncable::Directory* directory,
syncer::ModelType type,
- ObserverList<TypeDebugInfoObserver>* observers);
+ base::ObserverList<TypeDebugInfoObserver>* observers);
// A simple constructor for tests. Should not be used in real code.
DirectoryTypeDebugInfoEmitter(
ModelType type,
- ObserverList<TypeDebugInfoObserver>* observers);
+ base::ObserverList<TypeDebugInfoObserver>* observers);
virtual ~DirectoryTypeDebugInfoEmitter();
@@ -88,7 +88,7 @@ class SYNC_EXPORT_PRIVATE DirectoryTypeDebugInfoEmitter {
// doesn't make sense to have them manage their own observer list. They all
// share one observer list that is provided by their owner and which is
// guaranteed to outlive them.
- ObserverList<TypeDebugInfoObserver>* type_debug_info_observers_;
+ base::ObserverList<TypeDebugInfoObserver>* type_debug_info_observers_;
DISALLOW_COPY_AND_ASSIGN(DirectoryTypeDebugInfoEmitter);
};
« no previous file with comments | « sync/js/sync_js_controller.h ('k') | sync/sessions/directory_type_debug_info_emitter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698