Chromium Code Reviews| Index: components/arc/intent_helper/arc_intent_helper_observer.h |
| diff --git a/components/arc/intent_helper/arc_intent_helper_observer.h b/components/arc/intent_helper/arc_intent_helper_observer.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..1d916d9876bbc97eff48a1b655a7b1c204c8d14c |
| --- /dev/null |
| +++ b/components/arc/intent_helper/arc_intent_helper_observer.h |
| @@ -0,0 +1,20 @@ |
| +// 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: |
| + // Called when app's intent filter is updated. |
| + virtual void OnAppsUpdated() = 0; |
| + |
| + protected: |
| + virtual ~ArcIntentHelperObserver() = default; |
| + |
|
Yusuke Sato
2016/11/28 07:48:47
};
oka
2016/11/28 09:57:01
Done.
|
| +} // namespace arc |
| + |
| +#endif // COMPONENTS_ARC_INTENT_HELPER_ARC_INTENT_HELPER_OBSERVER_H_ |