mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium revision 74933.
- CefRegisterPlugin now only supports a single mime type per registration. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@186 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@@ -19,7 +19,7 @@ using WebKit::WebFileWriterClient;
|
||||
using WebKit::WebString;
|
||||
using WebKit::WebURL;
|
||||
|
||||
URLRequestContext* BrowserFileWriter::request_context_ = NULL;
|
||||
net::URLRequestContext* BrowserFileWriter::request_context_ = NULL;
|
||||
|
||||
// Helper class to proxy the write and truncate calls to the IO thread,
|
||||
// and to proxy the results back to the main thead. There is a one-to-one
|
||||
@@ -116,7 +116,8 @@ class BrowserFileWriter::IOThreadProxy
|
||||
|
||||
FileSystemOperation* GetNewOperation() {
|
||||
// The FileSystemOperation takes ownership of the CallbackDispatcher.
|
||||
return new FileSystemOperation(new CallbackDispatcher(this), io_thread_);
|
||||
return new FileSystemOperation(new CallbackDispatcher(this),
|
||||
io_thread_, NULL);
|
||||
}
|
||||
|
||||
void DidSucceed() {
|
||||
|
Reference in New Issue
Block a user