OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef WebPresentationAvailabilityObserver_h |
| 6 #define WebPresentationAvailabilityObserver_h |
| 7 |
| 8 namespace blink { |
| 9 |
| 10 // WebPresentationAvailabilityObserver is an interface that is implemented by |
| 11 // objects that wish to be notified when there is a presentation display |
| 12 // availability change. |
| 13 class WebPresentationAvailabilityObserver { |
| 14 public: |
| 15 virtual void availabilityChanged(bool) = 0; |
| 16 }; |
| 17 |
| 18 } // namespace blink |
| 19 |
| 20 #endif // WebPresentationAvailabilityObserver_h |
OLD | NEW |