| Index: third_party/WebKit/Source/core/inspector/InspectorInstrumentation.h
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.h b/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.h
|
| index 3afad9a4181de675015113280c8c4373c9359ade..2a548f18c2d559576a7b8c5714de5f9b6f875a98 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.h
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.h
|
| @@ -82,6 +82,18 @@ private:
|
|
|
| namespace InspectorInstrumentation {
|
|
|
| +class CORE_EXPORT AsyncTask {
|
| + STACK_ALLOCATED();
|
| +public:
|
| + AsyncTask(ExecutionContext*, void* task);
|
| + AsyncTask(ExecutionContext*, void* task, bool enabled);
|
| + ~AsyncTask();
|
| +
|
| +private:
|
| + Member<InstrumentingAgents> m_instrumentingAgents;
|
| + void* m_task;
|
| +};
|
| +
|
| class CORE_EXPORT FrontendCounter {
|
| STATIC_ONLY(FrontendCounter);
|
| private:
|
|
|