OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 | 61 |
62 // enterRunLoop() processes tasks posted to this WebThread. This call does n
ot return until some task calls exitRunLoop(). | 62 // enterRunLoop() processes tasks posted to this WebThread. This call does n
ot return until some task calls exitRunLoop(). |
63 // WebThread does not support nesting, meaning that once the run loop is ent
ered for a given WebThread it is not valid to | 63 // WebThread does not support nesting, meaning that once the run loop is ent
ered for a given WebThread it is not valid to |
64 // call enterRunLoop() again. | 64 // call enterRunLoop() again. |
65 virtual void enterRunLoop() = 0; | 65 virtual void enterRunLoop() = 0; |
66 | 66 |
67 // exitRunLoop() runs tasks until there are no tasks available to run, then
returns control to the caller of enterRunLoop(). | 67 // exitRunLoop() runs tasks until there are no tasks available to run, then
returns control to the caller of enterRunLoop(). |
68 // Must be called when the WebThread is running. | 68 // Must be called when the WebThread is running. |
69 virtual void exitRunLoop() = 0; | 69 virtual void exitRunLoop() = 0; |
70 | 70 |
71 // Delayed work is driven by a shared timer. | |
72 typedef void (*SharedTimerFunction)(); | |
73 virtual void setSharedTimerFiredFunction(SharedTimerFunction) = 0; | |
74 virtual void setSharedTimerFireInterval(double) = 0; | |
75 virtual void stopSharedTimer() = 0; | |
76 | |
77 virtual ~WebThread() { } | 71 virtual ~WebThread() { } |
78 }; | 72 }; |
79 | 73 |
80 } // namespace blink | 74 } // namespace blink |
81 | 75 |
82 #endif | 76 #endif |
OLD | NEW |