Title: [92965] trunk/Source/WebKit/chromium
- Revision
- 92965
- Author
- [email protected]
- Date
- 2011-08-12 09:26:39 -0700 (Fri, 12 Aug 2011)
Log Message
[chromium] Add WebThread to WebKitClient
https://bugs.webkit.org/show_bug.cgi?id=66013
Reviewed by Darin Fisher.
* public/WebKitClient.h:
(WebKit::WebKitClient::createThread):
* public/WebThread.h: Added.
(WebKit::WebThread::~WebThread):
Modified Paths
Added Paths
Diff
Modified: trunk/Source/WebKit/chromium/ChangeLog (92964 => 92965)
--- trunk/Source/WebKit/chromium/ChangeLog 2011-08-12 15:34:08 UTC (rev 92964)
+++ trunk/Source/WebKit/chromium/ChangeLog 2011-08-12 16:26:39 UTC (rev 92965)
@@ -1,3 +1,15 @@
+2011-08-10 Nat Duca <[email protected]>
+
+ [chromium] Add WebThread to WebKitClient
+ https://bugs.webkit.org/show_bug.cgi?id=66013
+
+ Reviewed by Darin Fisher.
+
+ * public/WebKitClient.h:
+ (WebKit::WebKitClient::createThread):
+ * public/WebThread.h: Added.
+ (WebKit::WebThread::~WebThread):
+
2011-08-11 John Bauman <[email protected]>
Readback composited webgl results for printing
Modified: trunk/Source/WebKit/chromium/public/WebKitClient.h (92964 => 92965)
--- trunk/Source/WebKit/chromium/public/WebKitClient.h 2011-08-12 15:34:08 UTC (rev 92964)
+++ trunk/Source/WebKit/chromium/public/WebKitClient.h 2011-08-12 16:26:39 UTC (rev 92965)
@@ -70,6 +70,7 @@
class WebSocketStreamHandle;
class WebStorageNamespace;
class WebThemeEngine;
+class WebThread;
class WebURLLoader;
class WebKitClient {
@@ -174,6 +175,12 @@
virtual size_t actualMemoryUsageMB() { return 0; }
+ // Threads -------------------------------------------------------
+
+ // Creates an embedder-defined thread.
+ virtual WebThread* createThread(const char* name) { return 0; }
+
+
// Message Ports -------------------------------------------------------
// Creates a Message Port Channel. This can be called on any thread.
Added: trunk/Source/WebKit/chromium/public/WebThread.h (0 => 92965)
--- trunk/Source/WebKit/chromium/public/WebThread.h (rev 0)
+++ trunk/Source/WebKit/chromium/public/WebThread.h 2011-08-12 16:26:39 UTC (rev 92965)
@@ -0,0 +1,53 @@
+/*
+ * Copyright (C) 2011 Google Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+#ifndef WebThread_h
+#define WebThread_h
+
+#include "WebCommon.h"
+
+namespace WebKit {
+
+// Provides an interface to an embedder-defined thread implementation.
+//
+// Deleting the thread blocks until all pending, non-delayed tasks have been
+// run.
+class WebThread {
+public:
+ class Task {
+ public:
+ virtual ~Task() { }
+ virtual void run() = 0;
+ };
+
+ virtual void postTask(Task*) = 0;
+ virtual void postDelayedTask(Task*, int64 delayMs) = 0;
+
+protected:
+ ~WebThread() { }
+};
+
+} // namespace WebKit
+
+#endif
Property changes on: trunk/Source/WebKit/chromium/public/WebThread.h
___________________________________________________________________
Added: svn:eol-style
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes