mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
- Update to Chromium revision 85305.
- Use the angle library for GL support (issue #136). - Add a workaround for the SyncRequestProxy deadlock problem (issue #192). git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@233 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@ -19,10 +19,10 @@ class FileSystemContext;
|
||||
|
||||
// An implementation of WebFileWriter for use in test_shell and DRT.
|
||||
class BrowserFileWriter : public fileapi::WebFileWriterBase,
|
||||
public base::SupportsWeakPtr<BrowserFileWriter> {
|
||||
public base::SupportsWeakPtr<BrowserFileWriter> {
|
||||
public:
|
||||
BrowserFileWriter(
|
||||
const WebKit::WebString& path,
|
||||
const GURL& path,
|
||||
WebKit::WebFileWriterClient* client,
|
||||
fileapi::FileSystemContext* file_system_context);
|
||||
virtual ~BrowserFileWriter();
|
||||
@ -37,8 +37,8 @@ class BrowserFileWriter : public fileapi::WebFileWriterBase,
|
||||
|
||||
protected:
|
||||
// WebFileWriterBase overrides
|
||||
virtual void DoTruncate(const FilePath& path, int64 offset);
|
||||
virtual void DoWrite(const FilePath& path, const GURL& blob_url,
|
||||
virtual void DoTruncate(const GURL& path, int64 offset);
|
||||
virtual void DoWrite(const GURL& path, const GURL& blob_url,
|
||||
int64 offset);
|
||||
virtual void DoCancel();
|
||||
|
||||
|
Reference in New Issue
Block a user