Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 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 CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OBSERVER_H_ | |
| 6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OBSERVER_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 | |
| 10 namespace chromeos { | |
| 11 namespace file_system_provider { | |
| 12 | |
| 13 class ProvidedFileSystem; | |
| 14 | |
| 15 class Observer { | |
| 16 public: | |
| 17 virtual void OnProvidedFileSystemRegistered( | |
| 18 const ProvidedFileSystem& file_system); | |
|
kinaba
2014/03/12 01:12:36
= 0?
mtomasz
2014/03/12 03:06:19
Done.
| |
| 19 virtual void OnProvidedFileSystemUnregistered( | |
| 20 const ProvidedFileSystem& file_system); | |
|
kinaba
2014/03/12 01:12:36
ditto
mtomasz
2014/03/12 03:06:19
Done.
| |
| 21 }; | |
| 22 | |
| 23 } // namespace file_system_provider | |
| 24 } // namespace chromeos | |
| 25 | |
| 26 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OBSERVER_H_ | |
| OLD | NEW |