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

Unified Diff: webkit/tools/test_shell/test_webworker_helper.h

Issue 66043: Make OSX TestShell able to run workers, using a new test_worker.dylib which i... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 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 | « webkit/tools/test_shell/test_shell.gyp ('k') | webkit/tools/test_shell/test_webworker_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/tools/test_shell/test_webworker_helper.h
===================================================================
--- webkit/tools/test_shell/test_webworker_helper.h (revision 13023)
+++ webkit/tools/test_shell/test_webworker_helper.h (working copy)
@@ -37,13 +37,15 @@
virtual void Unload();
private:
- bool Load();
+ void Load();
static void UnloadHelper(void* param);
#if defined(OS_WIN)
// TODO(port): Remove ifdefs when we have portable replacement for HMODULE.
HMODULE module_;
-#endif // defined(OS_WIN)
+#elif defined(OS_MACOSX)
+ void* module_;
+#endif
CreateWebWorkerFunc CreateWebWorker_;
« no previous file with comments | « webkit/tools/test_shell/test_shell.gyp ('k') | webkit/tools/test_shell/test_webworker_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698