| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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 CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FILE_SYSTEM_BROWSER_HOST_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FILE_SYSTEM_BROWSER_HOST_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FILE_SYSTEM_BROWSER_HOST_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FILE_SYSTEM_BROWSER_HOST_H_ |
| 7 | 7 |
| 8 #include <queue> | 8 #include <queue> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 | 41 |
| 42 // Opens the PepperFileSystemBrowserHost to use an existing file system at the | 42 // Opens the PepperFileSystemBrowserHost to use an existing file system at the |
| 43 // given |root_url|. The file system at |root_url| must already be opened and | 43 // given |root_url|. The file system at |root_url| must already be opened and |
| 44 // have the type given by GetType(). | 44 // have the type given by GetType(). |
| 45 // Calls |callback| when complete. | 45 // Calls |callback| when complete. |
| 46 void OpenExisting(const GURL& root_url, const base::Closure& callback); | 46 void OpenExisting(const GURL& root_url, const base::Closure& callback); |
| 47 | 47 |
| 48 // ppapi::host::ResourceHost overrides. | 48 // ppapi::host::ResourceHost overrides. |
| 49 virtual int32_t OnResourceMessageReceived( | 49 virtual int32_t OnResourceMessageReceived( |
| 50 const IPC::Message& msg, | 50 const IPC::Message& msg, |
| 51 ppapi::host::HostMessageContext* context) OVERRIDE; | 51 ppapi::host::HostMessageContext* context) override; |
| 52 virtual bool IsFileSystemHost() OVERRIDE; | 52 virtual bool IsFileSystemHost() override; |
| 53 | 53 |
| 54 // Supports FileRefs direct access on the host side. | 54 // Supports FileRefs direct access on the host side. |
| 55 PP_FileSystemType GetType() const { return type_; } | 55 PP_FileSystemType GetType() const { return type_; } |
| 56 bool IsOpened() const { return opened_; } | 56 bool IsOpened() const { return opened_; } |
| 57 GURL GetRootUrl() const { return root_url_; } | 57 GURL GetRootUrl() const { return root_url_; } |
| 58 scoped_refptr<storage::FileSystemContext> GetFileSystemContext() const { | 58 scoped_refptr<storage::FileSystemContext> GetFileSystemContext() const { |
| 59 return file_system_context_; | 59 return file_system_context_; |
| 60 } | 60 } |
| 61 | 61 |
| 62 // Supports FileIOs direct access on the host side. | 62 // Supports FileIOs direct access on the host side. |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 std::string fsid_; // used only for isolated filesystems. | 165 std::string fsid_; // used only for isolated filesystems. |
| 166 | 166 |
| 167 base::WeakPtrFactory<PepperFileSystemBrowserHost> weak_factory_; | 167 base::WeakPtrFactory<PepperFileSystemBrowserHost> weak_factory_; |
| 168 | 168 |
| 169 DISALLOW_COPY_AND_ASSIGN(PepperFileSystemBrowserHost); | 169 DISALLOW_COPY_AND_ASSIGN(PepperFileSystemBrowserHost); |
| 170 }; | 170 }; |
| 171 | 171 |
| 172 } // namespace content | 172 } // namespace content |
| 173 | 173 |
| 174 #endif // CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FILE_SYSTEM_BROWSER_HOST_
H_ | 174 #endif // CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FILE_SYSTEM_BROWSER_HOST_
H_ |
| OLD | NEW |