blob: d6d41e3e0220f24c6b923ce33edd52f2dacaf9dc [file] [log] [blame]
// Copyright 2016 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_ARC_INTENT_HELPER_ARC_INTENT_HELPER_OBSERVER_H_
#define COMPONENTS_ARC_INTENT_HELPER_ARC_INTENT_HELPER_OBSERVER_H_
namespace arc {
class ArcIntentHelperObserver {
public:
virtual ~ArcIntentHelperObserver() = default;
// Called when intent filters are added or removed.
virtual void OnIntentFiltersUpdated() = 0;
};
} // namespace arc
#endif // COMPONENTS_ARC_INTENT_HELPER_ARC_INTENT_HELPER_OBSERVER_H_