#ifndef CC_RASTER_SINGLE_THREAD_TASK_GRAPH_RUNNER_H_
#define CC_RASTER_SINGLE_THREAD_TASK_GRAPH_RUNNER_H_
#include <memory>
#include <string>
#include "base/synchronization/condition_variable.h"
#include "base/thread_annotations.h"
#include "base/threading/simple_thread.h"
#include "cc/raster/task_graph_runner.h"
#include "cc/raster/task_graph_work_queue.h"
namespace base {
class SimpleThread;
}
namespace cc {
class CC_EXPORT SingleThreadTaskGraphRunner
: public TaskGraphRunner,
public base::DelegateSimpleThread::Delegate { … };
}
#endif