| Index: webkit/support/webkit_support.cc
|
| ===================================================================
|
| --- webkit/support/webkit_support.cc (revision 58131)
|
| +++ webkit/support/webkit_support.cc (working copy)
|
| @@ -362,6 +362,11 @@
|
| MessageLoop::current()->PostDelayedTask(FROM_HERE, task, delay_ms);
|
| }
|
|
|
| +void PostDelayedTask(void (*func)(void*), void* context, int64 delay_ms) {
|
| + MessageLoop::current()->PostDelayedTask(
|
| + FROM_HERE, NewRunnableFunction(func, context), delay_ms);
|
| +}
|
| +
|
| // Wrappers for FilePath and file_util
|
|
|
| WebString GetAbsoluteWebStringFromUTF8Path(const std::string& utf8_path) {
|
|
|