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

Unified Diff: sync/sessions/directory_type_debug_info_emitter.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 | « sync/sessions/directory_type_debug_info_emitter.h ('k') | sync/sessions/model_type_registry.h » ('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.cc
diff --git a/sync/sessions/directory_type_debug_info_emitter.cc b/sync/sessions/directory_type_debug_info_emitter.cc
index c8228d23a4e85ff928eb48b3c2aa7c9153b68b1c..e1a89e8619b90b45d012cbcfafcc2c9e4af0945e 100644
--- a/sync/sessions/directory_type_debug_info_emitter.cc
+++ b/sync/sessions/directory_type_debug_info_emitter.cc
@@ -14,17 +14,17 @@ namespace syncer {
DirectoryTypeDebugInfoEmitter::DirectoryTypeDebugInfoEmitter(
syncable::Directory* directory,
syncer::ModelType type,
- ObserverList<TypeDebugInfoObserver>* observers)
+ base::ObserverList<TypeDebugInfoObserver>* observers)
: directory_(directory),
type_(type),
- type_debug_info_observers_(observers) {}
+ type_debug_info_observers_(observers) {
+}
DirectoryTypeDebugInfoEmitter::DirectoryTypeDebugInfoEmitter(
ModelType type,
- ObserverList<TypeDebugInfoObserver>* observers)
- : directory_(NULL),
- type_(type),
- type_debug_info_observers_(observers) {}
+ base::ObserverList<TypeDebugInfoObserver>* observers)
+ : directory_(NULL), type_(type), type_debug_info_observers_(observers) {
+}
DirectoryTypeDebugInfoEmitter::~DirectoryTypeDebugInfoEmitter() {}
« no previous file with comments | « sync/sessions/directory_type_debug_info_emitter.h ('k') | sync/sessions/model_type_registry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698