Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(910)

Unified Diff: base/message_loop.cc

Issue 6410105: run iwyu on base! Base URL: svn://svn.chromium.org/chrome/trunk/src/base
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/memory_debug.cc ('k') | base/message_loop_proxy_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/message_loop.cc
diff --git a/base/message_loop.cc b/base/message_loop.cc
index d83adccec08b56f8cdeb991c1b06af60d7a877e0..4cf0c8916ef7f61ffe3dab4810f920600fc866a5 100644
--- a/base/message_loop.cc
+++ b/base/message_loop.cc
@@ -2,17 +2,28 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "base/message_loop.h"
-
-#include <algorithm>
+#include <stdbool.h>
+#include <stddef.h>
+#include <string>
+#include <vector>
-#include "base/compiler_specific.h"
+#include "base/basictypes.h"
#include "base/lazy_instance.h"
#include "base/logging.h"
+#include "base/message_loop.h"
+#include "base/message_pump.h"
#include "base/message_pump_default.h"
#include "base/metrics/histogram.h"
+#include "base/observer_list.h"
+#include "base/ref_counted.h"
+#include "base/synchronization/lock.h"
+#include "base/task.h"
#include "base/third_party/dynamic_annotations/dynamic_annotations.h"
#include "base/threading/thread_local.h"
+#include "base/time.h"
+#include "build/build_config.h"
+
+namespace tracked_objects { class Location; }
#if defined(OS_MACOSX)
#include "base/message_pump_mac.h"
« no previous file with comments | « base/memory_debug.cc ('k') | base/message_loop_proxy_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698