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

Unified Diff: webkit/api/src/WebWorkerImpl.h

Issue 341077: Roll DEPS for WebKit 50416:50432. Includes a fix for upstream worker breakag... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 1 month 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 | « DEPS ('k') | webkit/api/src/WebWorkerImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/api/src/WebWorkerImpl.h
===================================================================
--- webkit/api/src/WebWorkerImpl.h (revision 30779)
+++ webkit/api/src/WebWorkerImpl.h (working copy)
@@ -73,9 +73,9 @@
virtual void workerContextDestroyed();
// WebCore::WorkerLoaderProxy methods:
- virtual void postTaskToLoader(PassRefPtr<WebCore::ScriptExecutionContext::Task>);
+ virtual void postTaskToLoader(PassOwnPtr<WebCore::ScriptExecutionContext::Task>);
virtual void postTaskForModeToWorkerContext(
- PassRefPtr<WebCore::ScriptExecutionContext::Task>, const WebCore::String& mode);
+ PassOwnPtr<WebCore::ScriptExecutionContext::Task>, const WebCore::String& mode);
// WebWorker methods:
virtual void startWorkerContext(const WebURL&, const WebString&, const WebString&);
@@ -87,7 +87,7 @@
WebWorkerClient* client() {return m_client;}
// Executes the given task on the main thread.
- static void dispatchTaskToMainThread(PassRefPtr<WebCore::ScriptExecutionContext::Task>);
+ static void dispatchTaskToMainThread(PassOwnPtr<WebCore::ScriptExecutionContext::Task>);
private:
virtual ~WebWorkerImpl();
« no previous file with comments | « DEPS ('k') | webkit/api/src/WebWorkerImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698