summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-27 21:39:48 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-27 21:39:48 +0000
commit1407b6eecf2fe8475e52ed628ac4ad57e1f0c1c0 (patch)
tree61cd89f2c6812566e74c83de1c21f9748da996f8 /base
parent396850c6a064652cf2e9afe45a2582553e80d2b8 (diff)
downloadchromium_src-1407b6eecf2fe8475e52ed628ac4ad57e1f0c1c0.zip
chromium_src-1407b6eecf2fe8475e52ed628ac4ad57e1f0c1c0.tar.gz
chromium_src-1407b6eecf2fe8475e52ed628ac4ad57e1f0c1c0.tar.bz2
FBTF: Remove unneeded headers from base/ (part 7)
BUG=none TEST=none Review URL: http://codereview.chromium.org/3176026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57737 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r--base/crypto/cssm_init.h3
-rw-r--r--base/file_util_mac.mm4
-rw-r--r--base/file_util_unittest.cc1
-rw-r--r--base/file_version_info_mac.mm4
-rw-r--r--base/lock_impl_win.cc2
-rw-r--r--base/message_pump_glib_unittest.cc3
-rw-r--r--base/scoped_variant_win.h6
-rw-r--r--base/scoped_vector.h2
8 files changed, 10 insertions, 15 deletions
diff --git a/base/crypto/cssm_init.h b/base/crypto/cssm_init.h
index a066542..e457083 100644
--- a/base/crypto/cssm_init.h
+++ b/base/crypto/cssm_init.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Copyright (c) 2010 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.
@@ -8,7 +8,6 @@
#include <Security/cssm.h>
-#include "base/logging.h"
#include "base/scoped_ptr.h"
class Lock;
diff --git a/base/file_util_mac.mm b/base/file_util_mac.mm
index 7f81e8a..811799c 100644
--- a/base/file_util_mac.mm
+++ b/base/file_util_mac.mm
@@ -1,4 +1,4 @@
-// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
+// Copyright (c) 2010 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.
@@ -7,8 +7,8 @@
#import <Cocoa/Cocoa.h>
#include <copyfile.h>
+#include "base/basictypes.h"
#include "base/file_path.h"
-#include "base/logging.h"
#include "base/string_util.h"
namespace file_util {
diff --git a/base/file_util_unittest.cc b/base/file_util_unittest.cc
index f8eb38d..26eb42d 100644
--- a/base/file_util_unittest.cc
+++ b/base/file_util_unittest.cc
@@ -18,7 +18,6 @@
#include "base/base_paths.h"
#include "base/file_path.h"
#include "base/file_util.h"
-#include "base/logging.h"
#include "base/path_service.h"
#include "base/platform_thread.h"
#include "base/scoped_handle.h"
diff --git a/base/file_version_info_mac.mm b/base/file_version_info_mac.mm
index 2218226..57be79a 100644
--- a/base/file_version_info_mac.mm
+++ b/base/file_version_info_mac.mm
@@ -1,4 +1,4 @@
-// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
+// Copyright (c) 2010 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.
@@ -6,8 +6,8 @@
#import <Cocoa/Cocoa.h>
+#include "base/basictypes.h"
#include "base/file_path.h"
-#include "base/logging.h"
#include "base/string_util.h"
#include "base/utf_string_conversions.h"
diff --git a/base/lock_impl_win.cc b/base/lock_impl_win.cc
index 14b76f8..8c03b61 100644
--- a/base/lock_impl_win.cc
+++ b/base/lock_impl_win.cc
@@ -3,7 +3,6 @@
// found in the LICENSE file.
#include "base/lock_impl.h"
-#include "base/logging.h"
LockImpl::LockImpl() {
// The second parameter is the spin count, for short-held locks it avoid the
@@ -29,4 +28,3 @@ void LockImpl::Lock() {
void LockImpl::Unlock() {
::LeaveCriticalSection(&os_lock_);
}
-
diff --git a/base/message_pump_glib_unittest.cc b/base/message_pump_glib_unittest.cc
index cb9a84f3..72d2fbf 100644
--- a/base/message_pump_glib_unittest.cc
+++ b/base/message_pump_glib_unittest.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Copyright (c) 2010 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.
@@ -10,7 +10,6 @@
#include <algorithm>
#include <vector>
-#include "base/logging.h"
#include "base/message_loop.h"
#include "base/platform_thread.h"
#include "base/ref_counted.h"
diff --git a/base/scoped_variant_win.h b/base/scoped_variant_win.h
index df6703e..c712e50 100644
--- a/base/scoped_variant_win.h
+++ b/base/scoped_variant_win.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Copyright (c) 2010 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.
@@ -9,8 +9,8 @@
#include <windows.h>
#include <oleauto.h>
-#include "base/basictypes.h" // needed to pick up OS_WIN
-#include "base/logging.h"
+#include "base/basictypes.h"
+#include "build/build_config.h"
// Scoped VARIANT class for automatically freeing a COM VARIANT at the
// end of a scope. Additionally provides a few functions to make the
diff --git a/base/scoped_vector.h b/base/scoped_vector.h
index b797078..34620e6 100644
--- a/base/scoped_vector.h
+++ b/base/scoped_vector.h
@@ -8,7 +8,7 @@
#include <vector>
-#include "base/logging.h"
+#include "base/basictypes.h"
#include "base/stl_util-inl.h"
// ScopedVector wraps a vector deleting the elements from its