Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1740)

Unified Diff: chrome/worker/webworkerclient_proxy.h

Issue 6613008: Update WebWorkerClientProxy to respect the "create" param. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/worker/webworkerclient_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/worker/webworkerclient_proxy.h
diff --git a/chrome/worker/webworkerclient_proxy.h b/chrome/worker/webworkerclient_proxy.h
index 0a126faaaa28aad8b9e301eb8bf1138ec64a57ea..447c54db1a96d7cdb2c150cb0325daa5b1f7fff4 100644
--- a/chrome/worker/webworkerclient_proxy.h
+++ b/chrome/worker/webworkerclient_proxy.h
@@ -76,8 +76,16 @@ class WebWorkerClientProxy : public WebKit::WebWorkerClient {
virtual void openFileSystem(WebKit::WebFileSystem::Type type,
long long size,
+ bool create,
WebKit::WebFileSystemCallbacks* callbacks);
+ // TODO(adamk): Remove this method once it's gone from WebKit.
+ virtual void openFileSystem(WebKit::WebFileSystem::Type type,
+ long long size,
+ WebKit::WebFileSystemCallbacks* callbacks) {
+ openFileSystem(type, size, true, callbacks);
+ }
+
void EnsureWorkerContextTerminates();
private:
« no previous file with comments | « no previous file | chrome/worker/webworkerclient_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698