diff options
author | mostynb@opera.com <mostynb@opera.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-11 01:31:51 +0000 |
---|---|---|
committer | mostynb@opera.com <mostynb@opera.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-11 01:31:51 +0000 |
commit | 523f58cdc9f9f0f399367c0bc4b27f6c04e5128f (patch) | |
tree | fa523f33600d84dcfb2e07682a06863748126f9f /cc/resources | |
parent | 911de6f32a8f8c603eb5f2e8a66ef9a741d87bf8 (diff) | |
download | chromium_src-523f58cdc9f9f0f399367c0bc4b27f6c04e5128f.zip chromium_src-523f58cdc9f9f0f399367c0bc4b27f6c04e5128f.tar.gz chromium_src-523f58cdc9f9f0f399367c0bc4b27f6c04e5128f.tar.bz2 |
add missing headers in cc/*
cc/resources/worker_pool.cc uses ConditionVariable but doesn't
include base/synchronization/condition_variable.h.
And various files in cc/scheduler/ were missing base/logging.h and base/bind.h.
BUG=259043
Review URL: https://chromiumcodereview.appspot.com/18804005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@211004 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/resources')
-rw-r--r-- | cc/resources/worker_pool.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cc/resources/worker_pool.cc b/cc/resources/worker_pool.cc index b4e96f6..812bbeb 100644 --- a/cc/resources/worker_pool.cc +++ b/cc/resources/worker_pool.cc @@ -11,6 +11,7 @@ #include "base/containers/hash_tables.h" #include "base/debug/trace_event.h" #include "base/strings/stringprintf.h" +#include "base/synchronization/condition_variable.h" #include "base/threading/simple_thread.h" #include "base/threading/thread_restrictions.h" #include "cc/base/scoped_ptr_deque.h" |