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

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

Issue 192573002: [fsp] Introduce file_system_provider::Service class for the FileSystemProvider API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleaned up. Created 6 years, 9 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
(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_PROVIDED_FILE_SYSTEM_H_
6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_H_
7
8 #include <string>
9
10 #include "base/files/file_path.h"
11
12 namespace chromeos {
13 namespace file_system_provider {
14
15 struct ProvidedFileSystem {
16 // ID of the extension providing this file system.
17 std::string extension_id;
18
19 // ID of the file system, used internally. Equal to the mount point name of
20 // the underlying file system.
21 std::string file_system_id;
22
23 // Name of the file system, can be rendered in the UI.
24 std::string file_system_name;
25
26 // Mount path of the underlying file system.
27 base::FilePath mount_path;
28 };
29
30 } // namespace file_system_provider
31 } // namespace chromeos
32
33 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698