diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-13 19:11:59 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-13 19:11:59 +0000 |
commit | 1fec84062d9cac9ed75612c339172c22c9c6837d (patch) | |
tree | 615de2f1722c6f06f33259a7dc8eade8a48ff9ee /base | |
parent | 1ac099ccaa4bc2d28473f310e74c4414e5a10de7 (diff) | |
download | chromium_src-1fec84062d9cac9ed75612c339172c22c9c6837d.zip chromium_src-1fec84062d9cac9ed75612c339172c22c9c6837d.tar.gz chromium_src-1fec84062d9cac9ed75612c339172c22c9c6837d.tar.bz2 |
Removed unneeded includes of base/scoped_ptr.h. Reduce usage from ~800 files to ~400.
Review URL: http://codereview.chromium.org/46039
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11651 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/command_line.h | 1 | ||||
-rw-r--r-- | base/condition_variable.h | 1 | ||||
-rw-r--r-- | base/histogram.cc | 1 | ||||
-rw-r--r-- | base/histogram.h | 1 | ||||
-rw-r--r-- | base/json_reader.cc | 1 | ||||
-rw-r--r-- | base/logging.h | 1 | ||||
-rw-r--r-- | base/message_loop.h | 1 | ||||
-rw-r--r-- | base/message_pump_glib.h | 1 | ||||
-rw-r--r-- | base/process_util_posix.cc | 1 | ||||
-rw-r--r-- | base/stats_table.cc | 1 | ||||
-rw-r--r-- | base/time_format.cc | 1 | ||||
-rw-r--r-- | base/win_util.cc | 1 |
12 files changed, 6 insertions, 6 deletions
diff --git a/base/command_line.h b/base/command_line.h index c79268d7..c727b8a 100644 --- a/base/command_line.h +++ b/base/command_line.h @@ -25,7 +25,6 @@ #include "base/basictypes.h" #include "base/logging.h" -#include "base/scoped_ptr.h" class InProcessBrowserTest; diff --git a/base/condition_variable.h b/base/condition_variable.h index c292f3d..5eb2c64 100644 --- a/base/condition_variable.h +++ b/base/condition_variable.h @@ -66,7 +66,6 @@ #define BASE_CONDITION_VARIABLE_H_ #include "base/lock.h" -#include "base/scoped_ptr.h" #include "base/time.h" class ConditionVariable { diff --git a/base/histogram.cc b/base/histogram.cc index 3234eb9..bdf7f9a 100644 --- a/base/histogram.cc +++ b/base/histogram.cc @@ -13,7 +13,6 @@ #include <string> #include "base/logging.h" -#include "base/scoped_ptr.h" #include "base/string_util.h" using base::TimeDelta; diff --git a/base/histogram.h b/base/histogram.h index 5bf0fc1..f66c9b4 100644 --- a/base/histogram.h +++ b/base/histogram.h @@ -37,7 +37,6 @@ #include "base/lock.h" #include "base/pickle.h" -#include "base/scoped_ptr.h" #include "base/stats_counters.h" //------------------------------------------------------------------------------ diff --git a/base/json_reader.cc b/base/json_reader.cc index b5013ef..fd11a18 100644 --- a/base/json_reader.cc +++ b/base/json_reader.cc @@ -6,6 +6,7 @@ #include "base/float_util.h" #include "base/logging.h" +#include "base/scoped_ptr.h" #include "base/string_util.h" #include "base/values.h" diff --git a/base/logging.h b/base/logging.h index ee3ab40..d671ef5 100644 --- a/base/logging.h +++ b/base/logging.h @@ -10,7 +10,6 @@ #include <sstream> #include "base/basictypes.h" -#include "base/scoped_ptr.h" // // Optional message capabilities diff --git a/base/message_loop.h b/base/message_loop.h index 6cd0ef4..d5ef281 100644 --- a/base/message_loop.h +++ b/base/message_loop.h @@ -14,6 +14,7 @@ #include "base/message_pump.h" #include "base/observer_list.h" #include "base/ref_counted.h" +#include "base/scoped_ptr.h" #include "base/task.h" #include "base/timer.h" diff --git a/base/message_pump_glib.h b/base/message_pump_glib.h index 19d2ecd..d25ae86 100644 --- a/base/message_pump_glib.h +++ b/base/message_pump_glib.h @@ -8,7 +8,6 @@ #include <glib.h> #include "base/message_pump.h" -#include "base/scoped_ptr.h" #include "base/time.h" namespace base { diff --git a/base/process_util_posix.cc b/base/process_util_posix.cc index 19df763..37888d5 100644 --- a/base/process_util_posix.cc +++ b/base/process_util_posix.cc @@ -19,6 +19,7 @@ #include "base/logging.h" #include "base/platform_thread.h" #include "base/process_util.h" +#include "base/scoped_ptr.h" #include "base/sys_info.h" #include "base/time.h" diff --git a/base/stats_table.cc b/base/stats_table.cc index 1a99b3c..d2b6a9e 100644 --- a/base/stats_table.cc +++ b/base/stats_table.cc @@ -7,6 +7,7 @@ #include "base/logging.h" #include "base/platform_thread.h" #include "base/process_util.h" +#include "base/scoped_ptr.h" #include "base/shared_memory.h" #include "base/string_piece.h" #include "base/string_util.h" diff --git a/base/time_format.cc b/base/time_format.cc index 887494f..e17b048 100644 --- a/base/time_format.cc +++ b/base/time_format.cc @@ -5,6 +5,7 @@ #include "base/time_format.h" #include "base/logging.h" +#include "base/scoped_ptr.h" #include "base/string_util.h" #include "base/time.h" #include "unicode/datefmt.h" diff --git a/base/win_util.cc b/base/win_util.cc index fe6d6f0..2f1ceb9 100644 --- a/base/win_util.cc +++ b/base/win_util.cc @@ -10,6 +10,7 @@ #include "base/logging.h" #include "base/registry.h" #include "base/scoped_handle.h" +#include "base/scoped_ptr.h" #include "base/singleton.h" #include "base/string_util.h" #include "base/tracked.h" |