diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-12 23:20:46 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-12 23:20:46 +0000 |
commit | bd1d148d3f4888f715c2c9995d78b9294c35084b (patch) | |
tree | 1b52a161163b020244e2b1e398847d2275070635 /chrome/common | |
parent | 9d806f57abc6b55a5decad8b230b1f8c31c692ba (diff) | |
download | chromium_src-bd1d148d3f4888f715c2c9995d78b9294c35084b.zip chromium_src-bd1d148d3f4888f715c2c9995d78b9294c35084b.tar.gz chromium_src-bd1d148d3f4888f715c2c9995d78b9294c35084b.tar.bz2 |
Remove logging.h from cc files that don't use it.
Review URL: http://codereview.chromium.org/42155
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11593 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/animation_unittest.cc | 1 | ||||
-rw-r--r-- | chrome/common/bzip2_unittest.cc | 2 | ||||
-rw-r--r-- | chrome/common/chrome_paths_linux.cc | 1 | ||||
-rw-r--r-- | chrome/common/extensions/user_script_unittest.cc | 1 | ||||
-rw-r--r-- | chrome/common/gfx/chrome_canvas_skia.cc | 1 | ||||
-rw-r--r-- | chrome/common/gfx/chrome_canvas_win.cc | 1 | ||||
-rw-r--r-- | chrome/common/gfx/emf_unittest.cc | 1 | ||||
-rw-r--r-- | chrome/common/worker_thread_ticker_unittest.cc | 1 |
8 files changed, 1 insertions, 8 deletions
diff --git a/chrome/common/animation_unittest.cc b/chrome/common/animation_unittest.cc index 450353d..6ca19e4 100644 --- a/chrome/common/animation_unittest.cc +++ b/chrome/common/animation_unittest.cc @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "base/logging.h" #include "base/message_loop.h" #include "chrome/common/animation.h" #include "testing/gtest/include/gtest/gtest.h" diff --git a/chrome/common/bzip2_unittest.cc b/chrome/common/bzip2_unittest.cc index 42d2c16..49fa809 100644 --- a/chrome/common/bzip2_unittest.cc +++ b/chrome/common/bzip2_unittest.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "base/logging.h" +#include "base/basictypes.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/bzip2/bzlib.h" diff --git a/chrome/common/chrome_paths_linux.cc b/chrome/common/chrome_paths_linux.cc index 8ffd9e0..d3ce207 100644 --- a/chrome/common/chrome_paths_linux.cc +++ b/chrome/common/chrome_paths_linux.cc @@ -8,7 +8,6 @@ #include <stdlib.h> #include "base/file_path.h" -#include "base/logging.h" #include "base/path_service.h" #include "chrome/third_party/xdg_user_dirs/xdg_user_dir_lookup.h" diff --git a/chrome/common/extensions/user_script_unittest.cc b/chrome/common/extensions/user_script_unittest.cc index 2be936a..6230497 100644 --- a/chrome/common/extensions/user_script_unittest.cc +++ b/chrome/common/extensions/user_script_unittest.cc @@ -3,7 +3,6 @@ // found in the LICENSE file. #include "base/file_path.h" -#include "base/logging.h" #include "chrome/common/extensions/user_script.h" #include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" diff --git a/chrome/common/gfx/chrome_canvas_skia.cc b/chrome/common/gfx/chrome_canvas_skia.cc index f68b347..b3b64d7 100644 --- a/chrome/common/gfx/chrome_canvas_skia.cc +++ b/chrome/common/gfx/chrome_canvas_skia.cc @@ -7,7 +7,6 @@ #include <limits> #include "base/gfx/rect.h" -#include "base/logging.h" #include "base/sys_string_conversions.h" #include "skia/include/SkShader.h" #include "skia/include/SkPaint.h" diff --git a/chrome/common/gfx/chrome_canvas_win.cc b/chrome/common/gfx/chrome_canvas_win.cc index 376db65..f6db09b 100644 --- a/chrome/common/gfx/chrome_canvas_win.cc +++ b/chrome/common/gfx/chrome_canvas_win.cc @@ -7,7 +7,6 @@ #include <limits> #include "base/gfx/rect.h" -#include "base/logging.h" #include "skia/include/SkShader.h" #include "chrome/common/gfx/chrome_font.h" #include "chrome/common/l10n_util.h" diff --git a/chrome/common/gfx/emf_unittest.cc b/chrome/common/gfx/emf_unittest.cc index f44477a..4a78e9a 100644 --- a/chrome/common/gfx/emf_unittest.cc +++ b/chrome/common/gfx/emf_unittest.cc @@ -9,7 +9,6 @@ #include "base/basictypes.h" #include "base/file_util.h" -#include "base/logging.h" #include "base/path_service.h" #include "chrome/browser/printing/win_printing_context.h" #include "chrome/common/chrome_paths.h" diff --git a/chrome/common/worker_thread_ticker_unittest.cc b/chrome/common/worker_thread_ticker_unittest.cc index c6d4db2..75e8669 100644 --- a/chrome/common/worker_thread_ticker_unittest.cc +++ b/chrome/common/worker_thread_ticker_unittest.cc @@ -4,7 +4,6 @@ #include "chrome/common/worker_thread_ticker.h" -#include "base/logging.h" #include "base/message_loop.h" #include "base/platform_thread.h" #include "testing/gtest/include/gtest/gtest.h" |