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

Side by Side Diff: ppapi/shared_impl/file_system_util.h

Issue 58853009: Pepper: Add shared Utilities for file systems. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add IsValid function. Created 7 years, 1 month 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
« no previous file with comments | « ppapi/shared_impl/DEPS ('k') | ppapi/shared_impl/file_system_util.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2013 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 PPAPI_SHARED_IMPL_FILE_SYSTEM_UTIL_H_
6 #define PPAPI_SHARED_IMPL_FILE_SYSTEM_UTIL_H_
7
8 #include "ppapi/c/pp_file_info.h"
9 #include "ppapi/shared_impl/ppapi_shared_export.h"
10 #include "webkit/common/fileapi/file_system_types.h"
11
12 namespace ppapi {
13
14 PPAPI_SHARED_EXPORT
15 fileapi::FileSystemType PepperFileSystemTypeToFileSystemType(
16 PP_FileSystemType type);
17
18 PPAPI_SHARED_EXPORT bool FileSystemTypeIsValid(PP_FileSystemType type);
19
20 PPAPI_SHARED_EXPORT bool FileSystemTypeHasQuota(PP_FileSystemType type);
21
22 } // namespace ppapi
23
24 #endif // PPAPI_SHARED_IMPL_FILE_SYSTEM_UTIL_H_
OLDNEW
« no previous file with comments | « ppapi/shared_impl/DEPS ('k') | ppapi/shared_impl/file_system_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698