blob: 92ba143a416050eb4af7f2b4ee8b037347a2dc81 [file] [log] [blame]
// Copyright 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_SYNCABLE_PREFS_PREF_SERVICE_SYNCABLE_OBSERVER_H_
#define COMPONENTS_SYNCABLE_PREFS_PREF_SERVICE_SYNCABLE_OBSERVER_H_
namespace syncable_prefs {
class PrefServiceSyncableObserver {
public:
// Invoked when PrefService::IsSyncing() changes.
virtual void OnIsSyncingChanged() = 0;
protected:
virtual ~PrefServiceSyncableObserver() {}
};
} // namespace syncable_prefs
#endif // COMPONENTS_SYNCABLE_PREFS_PREF_SERVICE_SYNCABLE_OBSERVER_H_