summaryrefslogtreecommitdiffstats
path: root/base/synchronization
diff options
context:
space:
mode:
authorvapier@chromium.org <vapier@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-19 21:46:27 +0000
committervapier@chromium.org <vapier@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-19 21:46:27 +0000
commit7f8a4eb616030a8418251d7478d1b4061759c523 (patch)
tree5c3d86edf9508b2e66011a82bc785187593aad2f /base/synchronization
parenta76a751357938750265432e06e24de8f559b764f (diff)
downloadchromium_src-7f8a4eb616030a8418251d7478d1b4061759c523.zip
chromium_src-7f8a4eb616030a8418251d7478d1b4061759c523.tar.gz
chromium_src-7f8a4eb616030a8418251d7478d1b4061759c523.tar.bz2
simplify a few header includes
These files don't use message loops, so drop those includes and add the standard headers they actually need. BUG=None TEST=building libbase in ChromeOS Review URL: http://codereview.chromium.org/9705110 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@127545 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/synchronization')
-rw-r--r--base/synchronization/waitable_event_posix.cc7
1 files changed, 5 insertions, 2 deletions
diff --git a/base/synchronization/waitable_event_posix.cc b/base/synchronization/waitable_event_posix.cc
index 87567c8..01077ff 100644
--- a/base/synchronization/waitable_event_posix.cc
+++ b/base/synchronization/waitable_event_posix.cc
@@ -1,12 +1,15 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include <algorithm>
+#include <vector>
+
#include "base/synchronization/waitable_event.h"
#include "base/synchronization/condition_variable.h"
#include "base/synchronization/lock.h"
-#include "base/message_loop.h"
+#include "base/logging.h"
// -----------------------------------------------------------------------------
// A WaitableEvent on POSIX is implemented as a wait-list. Currently we don't