| OLD | NEW |
| (Empty) |
| 1 // Copyright 2017 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 COMPONENTS_ARC_FILE_SYSTEM_ARC_FILE_SYSTEM_OBSERVER_H_ | |
| 6 #define COMPONENTS_ARC_FILE_SYSTEM_ARC_FILE_SYSTEM_OBSERVER_H_ | |
| 7 | |
| 8 namespace arc { | |
| 9 | |
| 10 class ArcFileSystemObserver { | |
| 11 public: | |
| 12 virtual ~ArcFileSystemObserver() = default; | |
| 13 | |
| 14 // Called when ARC file systems are ready. | |
| 15 virtual void OnFileSystemsReady() = 0; | |
| 16 | |
| 17 // Called when ARC file systems are closed. | |
| 18 virtual void OnFileSystemsClosed() = 0; | |
| 19 }; | |
| 20 | |
| 21 } // namespace arc | |
| 22 | |
| 23 #endif // COMPONENTS_ARC_FILE_SYSTEM_ARC_FILE_SYSTEM_OBSERVER_H_ | |
| OLD | NEW |