chore: clean up forward declarations (#29904)

This commit is contained in:
David Sanders 2021-07-01 17:51:37 -07:00 committed by GitHub
parent 1f8a46c9c6
commit f6531166ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
78 changed files with 133 additions and 109 deletions

View file

@ -4,9 +4,9 @@
#include <utility>
#include "shell/app/uv_task_runner.h"
#include "base/location.h"
#include "base/stl_util.h"
#include "shell/app/uv_task_runner.h"
namespace electron {

View file

@ -8,10 +8,13 @@
#include <map>
#include "base/callback.h"
#include "base/location.h"
#include "base/single_thread_task_runner.h"
#include "uv.h" // NOLINT(build/include_directory)
namespace base {
class Location;
}
namespace electron {
// TaskRunner implementation that posts tasks into libuv's default loop.