blob: 807c180fa1fc2f63e7277e46489f7e71385df2c2 [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_SYNC_PREFERENCES_PREF_SERVICE_SYNCABLE_OBSERVER_H_
#define COMPONENTS_SYNC_PREFERENCES_PREF_SERVICE_SYNCABLE_OBSERVER_H_
namespace sync_preferences {
class PrefServiceSyncableObserver {
public:
// Invoked when PrefService::IsSyncing() changes.
virtual void OnIsSyncingChanged() = 0;
protected:
virtual ~PrefServiceSyncableObserver() {}
};
} // namespace sync_preferences
#endif // COMPONENTS_SYNC_PREFERENCES_PREF_SERVICE_SYNCABLE_OBSERVER_H_