Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(623)

Side by Side Diff: chrome/browser/chromeos/file_system_provider/observer.h

Issue 210803003: [fsp] Decouple file_service_provider::Service. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments. Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OBSERVER_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OBSERVER_H_
6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OBSERVER_H_ 6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OBSERVER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/files/file.h" 10 #include "base/files/file.h"
11 11
12 namespace chromeos { 12 namespace chromeos {
13 namespace file_system_provider { 13 namespace file_system_provider {
14 14
15 class ProvidedFileSystem; 15 class ProvidedFileSystemInfo;
16 16
17 // Observes file_system_provider::Service for mounting and unmounting events. 17 // Observes file_system_provider::Service for mounting and unmounting events.
18 class Observer { 18 class Observer {
19 public: 19 public:
20 // Called when a file system mounting has been invoked. For success, the 20 // Called when a file system mounting has been invoked. For success, the
21 // |error| argument is set to FILE_OK. Otherwise, |error| contains a specific 21 // |error| argument is set to FILE_OK. Otherwise, |error| contains a specific
22 // error code. 22 // error code.
23 virtual void OnProvidedFileSystemMount(const ProvidedFileSystem& file_system, 23 virtual void OnProvidedFileSystemMount(
24 base::File::Error error) = 0; 24 const ProvidedFileSystemInfo& file_system_info,
25 base::File::Error error) = 0;
25 26
26 // Called when a file system unmounting has been invoked. For success, the 27 // Called when a file system unmounting has been invoked. For success, the
27 // |error| argument is set to FILE_OK. Otherwise, |error| contains a specific 28 // |error| argument is set to FILE_OK. Otherwise, |error| contains a specific
28 // error code. 29 // error code.
29 virtual void OnProvidedFileSystemUnmount( 30 virtual void OnProvidedFileSystemUnmount(
30 const ProvidedFileSystem& file_system, 31 const ProvidedFileSystemInfo& file_system_info,
31 base::File::Error error) = 0; 32 base::File::Error error) = 0;
32 }; 33 };
33 34
34 } // namespace file_system_provider 35 } // namespace file_system_provider
35 } // namespace chromeos 36 } // namespace chromeos
36 37
37 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OBSERVER_H_ 38 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OBSERVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698