blob: 08100da51409a3b317f4fe8a9c5a19d54931d1ce (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
// Copyright (c) 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 CONTENT_RENDERER_PEPPER_PEPPER_FILE_SYSTEM_HOST_H_
#define CONTENT_RENDERER_PEPPER_PEPPER_FILE_SYSTEM_HOST_H_
#include "base/basictypes.h"
#include "base/memory/weak_ptr.h"
#include "ppapi/c/pp_file_info.h"
#include "ppapi/host/host_message_context.h"
#include "ppapi/host/resource_host.h"
#include "url/gurl.h"
namespace content {
class RendererPpapiHost;
class PepperFileSystemHost :
public ppapi::host::ResourceHost,
public base::SupportsWeakPtr<PepperFileSystemHost> {
public:
// Creates a new PepperFileSystemHost for a file system of a given |type|. The
// host will not be connected to any specific file system, and will need to
// subsequently be opened before use.
PepperFileSystemHost(RendererPpapiHost* host,
PP_Instance instance,
PP_Resource resource,
PP_FileSystemType type);
virtual ~PepperFileSystemHost();
// ppapi::host::ResourceHost override.
virtual int32_t OnResourceMessageReceived(
const IPC::Message& msg,
ppapi::host::HostMessageContext* context) OVERRIDE;
virtual bool IsFileSystemHost() OVERRIDE;
// Supports FileRefs direct access on the host side.
PP_FileSystemType GetType() const { return type_; }
bool IsOpened() const { return opened_; }
GURL GetRootUrl() const { return root_url_; }
private:
// Callback for OpenFileSystem.
void DidOpenFileSystem(const std::string& name_unused, const GURL& root);
void DidFailOpenFileSystem(base::PlatformFileError error);
int32_t OnHostMsgOpen(ppapi::host::HostMessageContext* context,
int64_t expected_size);
int32_t OnHostMsgInitIsolatedFileSystem(
ppapi::host::HostMessageContext* context,
const std::string& fsid);
RendererPpapiHost* renderer_ppapi_host_;
ppapi::host::ReplyMessageContext reply_context_;
PP_FileSystemType type_;
bool opened_; // whether open is successful.
GURL root_url_;
bool called_open_; // whether open has been called.
base::WeakPtrFactory<PepperFileSystemHost> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(PepperFileSystemHost);
};
} // namespace content
#endif // CONTENT_RENDERER_PEPPER_PEPPER_FILE_SYSTEM_HOST_H_
|