blob: 2cbdc11e760d0fea45fd6aacff2873528f47cb67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef PPAPI_CPP_PRIVATE_ISOLATED_FILE_SYSTEM_PRIVATE_H_
#define PPAPI_CPP_PRIVATE_ISOLATED_FILE_SYSTEM_PRIVATE_H_
#include <stdint.h>
#include "ppapi/c/pp_instance.h"
#include "ppapi/c/private/ppb_isolated_file_system_private.h"
#include "ppapi/cpp/completion_callback.h"
#include "ppapi/cpp/file_system.h"
#include "ppapi/cpp/instance_handle.h"
namespace pp {
class CompletionCallback;
class IsolatedFileSystemPrivate {
public:
IsolatedFileSystemPrivate();
IsolatedFileSystemPrivate(const InstanceHandle& instance,
PP_IsolatedFileSystemType_Private type);
virtual ~IsolatedFileSystemPrivate();
int32_t Open(const CompletionCallbackWithOutput<pp::FileSystem>& cc);
private:
PP_Instance instance_;
PP_IsolatedFileSystemType_Private type_;
};
} // namespace pp
#endif // PPAPI_CPP_PRIVATE_ISOLATED_FILE_SYSTEM_PRIVATE_H_
|