blob: e8eb90f901501b28336a8980695e4b4b170c6fad [file] [log] [blame]
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_EXO_DATA_SOURCE_OBSERVER_H_
#define COMPONENTS_EXO_DATA_SOURCE_OBSERVER_H_
namespace exo {
class DataSource;
// Handles events on data devices in context-specific ways.
class DataSourceObserver {
public:
// Called at the top of the data device's destructor, to give observers a
// chance to remove themselves.
virtual void OnDataSourceDestroying(DataSource* source) = 0;
protected:
virtual ~DataSourceObserver() {}
};
} // namespace exo
#endif // COMPONENTS_EXO_DATA_SOURCE_OBSERVER_H_