diff options
author | dilmah@chromium.org <dilmah@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-19 22:13:24 +0000 |
---|---|---|
committer | dilmah@chromium.org <dilmah@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-19 22:13:24 +0000 |
commit | 7286e3fca5309c743061deb6f5593a070f35f592 (patch) | |
tree | b53a3c961955ca59258a91fe8f9e6605b71da511 /content/browser | |
parent | f706d901ff9830869f4ef3ebc50ee53282970c35 (diff) | |
download | chromium_src-7286e3fca5309c743061deb6f5593a070f35f592.zip chromium_src-7286e3fca5309c743061deb6f5593a070f35f592.tar.gz chromium_src-7286e3fca5309c743061deb6f5593a070f35f592.tar.bz2 |
some cleanup for base/stl_util
removed unused/irrelevant functions
removed irrelevant comments
Moved stl_util-inl.h => stl_util.h
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/7342047
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93110 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser')
19 files changed, 19 insertions, 19 deletions
diff --git a/content/browser/browser_child_process_host.cc b/content/browser/browser_child_process_host.cc index 7beb07a..addca3d 100644 --- a/content/browser/browser_child_process_host.cc +++ b/content/browser/browser_child_process_host.cc @@ -11,7 +11,7 @@ #include "base/metrics/histogram.h" #include "base/path_service.h" #include "base/process_util.h" -#include "base/stl_util-inl.h" +#include "base/stl_util.h" #include "base/string_util.h" #include "content/browser/browser_thread.h" #include "content/browser/content_browser_client.h" diff --git a/content/browser/cert_store.cc b/content/browser/cert_store.cc index a5ecee8..44acfe4 100644 --- a/content/browser/cert_store.cc +++ b/content/browser/cert_store.cc @@ -7,7 +7,7 @@ #include <algorithm> #include <functional> -#include "base/stl_util-inl.h" +#include "base/stl_util.h" #include "content/browser/renderer_host/render_process_host.h" #include "content/browser/renderer_host/render_view_host.h" #include "content/common/notification_service.h" diff --git a/content/browser/child_process_security_policy.cc b/content/browser/child_process_security_policy.cc index 61c2c46..81d3964 100644 --- a/content/browser/child_process_security_policy.cc +++ b/content/browser/child_process_security_policy.cc @@ -7,7 +7,7 @@ #include "base/file_path.h" #include "base/logging.h" #include "base/platform_file.h" -#include "base/stl_util-inl.h" +#include "base/stl_util.h" #include "base/string_util.h" #include "content/common/bindings_policy.h" #include "content/common/url_constants.h" diff --git a/content/browser/download/save_file_manager.cc b/content/browser/download/save_file_manager.cc index 16b900a..0004686 100644 --- a/content/browser/download/save_file_manager.cc +++ b/content/browser/download/save_file_manager.cc @@ -8,7 +8,7 @@ #include "base/file_util.h" #include "base/logging.h" -#include "base/stl_util-inl.h" +#include "base/stl_util.h" #include "base/string_util.h" #include "base/task.h" #include "base/threading/thread.h" diff --git a/content/browser/download/save_package.cc b/content/browser/download/save_package.cc index 6c2d3ea..8670bb8 100644 --- a/content/browser/download/save_package.cc +++ b/content/browser/download/save_package.cc @@ -11,7 +11,7 @@ #include "base/i18n/file_util_icu.h" #include "base/logging.h" #include "base/message_loop.h" -#include "base/stl_util-inl.h" +#include "base/stl_util.h" #include "base/string_piece.h" #include "base/string_split.h" #include "base/sys_string_conversions.h" diff --git a/content/browser/renderer_host/browser_render_process_host.cc b/content/browser/renderer_host/browser_render_process_host.cc index 123eb22..7c71dc2 100644 --- a/content/browser/renderer_host/browser_render_process_host.cc +++ b/content/browser/renderer_host/browser_render_process_host.cc @@ -22,7 +22,7 @@ #include "base/metrics/histogram.h" #include "base/path_service.h" #include "base/platform_file.h" -#include "base/stl_util-inl.h" +#include "base/stl_util.h" #include "base/string_util.h" #include "base/threading/thread.h" #include "base/threading/thread_restrictions.h" diff --git a/content/browser/renderer_host/clipboard_message_filter.cc b/content/browser/renderer_host/clipboard_message_filter.cc index 7add237..2e450b3 100644 --- a/content/browser/renderer_host/clipboard_message_filter.cc +++ b/content/browser/renderer_host/clipboard_message_filter.cc @@ -10,7 +10,7 @@ #include "third_party/zlib/zlib.h" #endif -#include "base/stl_util-inl.h" +#include "base/stl_util.h" #include "content/browser/clipboard_dispatcher.h" #include "content/browser/content_browser_client.h" #include "content/common/clipboard_messages.h" diff --git a/content/browser/renderer_host/media/media_stream_device_settings.cc b/content/browser/renderer_host/media/media_stream_device_settings.cc index e4a27db..54834e8 100644 --- a/content/browser/renderer_host/media/media_stream_device_settings.cc +++ b/content/browser/renderer_host/media/media_stream_device_settings.cc @@ -4,7 +4,7 @@ #include "content/browser/renderer_host/media/media_stream_device_settings.h" -#include "base/stl_util-inl.h" +#include "base/stl_util.h" #include "base/task.h" #include "content/browser/browser_thread.h" #include "content/browser/renderer_host/media/media_stream_settings_requester.h" diff --git a/content/browser/renderer_host/media/video_capture_controller.cc b/content/browser/renderer_host/media/video_capture_controller.cc index 7d84ea1..e1d5d28 100644 --- a/content/browser/renderer_host/media/video_capture_controller.cc +++ b/content/browser/renderer_host/media/video_capture_controller.cc @@ -4,7 +4,7 @@ #include "content/browser/renderer_host/media/video_capture_controller.h" -#include "base/stl_util-inl.h" +#include "base/stl_util.h" #include "content/browser/browser_thread.h" #include "content/browser/renderer_host/media/media_stream_manager.h" #include "content/browser/renderer_host/media/video_capture_manager.h" diff --git a/content/browser/renderer_host/media/video_capture_host.cc b/content/browser/renderer_host/media/video_capture_host.cc index 157a41a..d3192d6 100644 --- a/content/browser/renderer_host/media/video_capture_host.cc +++ b/content/browser/renderer_host/media/video_capture_host.cc @@ -5,7 +5,7 @@ #include "content/browser/renderer_host/media/video_capture_host.h" #include "base/memory/scoped_ptr.h" -#include "base/stl_util-inl.h" +#include "base/stl_util.h" #include "content/common/media/video_capture_messages.h" VideoCaptureHost::VideoCaptureHost() {} diff --git a/content/browser/renderer_host/media/video_capture_host_unittest.cc b/content/browser/renderer_host/media/video_capture_host_unittest.cc index 088e2f3..9e54881 100644 --- a/content/browser/renderer_host/media/video_capture_host_unittest.cc +++ b/content/browser/renderer_host/media/video_capture_host_unittest.cc @@ -9,7 +9,7 @@ #include "base/memory/scoped_ptr.h" #include "base/message_loop.h" #include "base/process_util.h" -#include "base/stl_util-inl.h" +#include "base/stl_util.h" #include "base/stringprintf.h" #include "content/browser/browser_thread.h" #include "content/browser/renderer_host/media/media_stream_manager.h" diff --git a/content/browser/renderer_host/p2p/socket_dispatcher_host.cc b/content/browser/renderer_host/p2p/socket_dispatcher_host.cc index f1e9e36..da92782 100644 --- a/content/browser/renderer_host/p2p/socket_dispatcher_host.cc +++ b/content/browser/renderer_host/p2p/socket_dispatcher_host.cc @@ -4,7 +4,7 @@ #include "content/browser/renderer_host/p2p/socket_dispatcher_host.h" -#include "base/stl_util-inl.h" +#include "base/stl_util.h" #include "content/browser/renderer_host/p2p/socket_host.h" #include "content/common/p2p_messages.h" diff --git a/content/browser/renderer_host/p2p/socket_host_tcp_server.cc b/content/browser/renderer_host/p2p/socket_host_tcp_server.cc index 5578c79..91140be 100644 --- a/content/browser/renderer_host/p2p/socket_host_tcp_server.cc +++ b/content/browser/renderer_host/p2p/socket_host_tcp_server.cc @@ -4,7 +4,7 @@ #include "content/browser/renderer_host/p2p/socket_host_tcp_server.h" -#include "base/stl_util-inl.h" +#include "base/stl_util.h" #include "content/browser/renderer_host/p2p/socket_host_tcp.h" #include "content/common/p2p_messages.h" #include "net/base/address_list.h" diff --git a/content/browser/renderer_host/resource_dispatcher_host.cc b/content/browser/renderer_host/resource_dispatcher_host.cc index 5bb7e05..28ef467 100644 --- a/content/browser/renderer_host/resource_dispatcher_host.cc +++ b/content/browser/renderer_host/resource_dispatcher_host.cc @@ -16,7 +16,7 @@ #include "base/message_loop.h" #include "base/metrics/histogram.h" #include "base/shared_memory.h" -#include "base/stl_util-inl.h" +#include "base/stl_util.h" #include "base/time.h" #include "chrome/browser/download/download_file_manager.h" #include "chrome/browser/download/download_manager.h" diff --git a/content/browser/renderer_host/resource_queue.cc b/content/browser/renderer_host/resource_queue.cc index d08b246..59d7078 100644 --- a/content/browser/renderer_host/resource_queue.cc +++ b/content/browser/renderer_host/resource_queue.cc @@ -4,7 +4,7 @@ #include "content/browser/renderer_host/resource_queue.h" -#include "base/stl_util-inl.h" +#include "base/stl_util.h" #include "content/browser/browser_thread.h" #include "content/browser/renderer_host/global_request_id.h" #include "content/browser/renderer_host/resource_dispatcher_host_request_info.h" diff --git a/content/browser/site_instance_unittest.cc b/content/browser/site_instance_unittest.cc index 444d372..f286d14 100644 --- a/content/browser/site_instance_unittest.cc +++ b/content/browser/site_instance_unittest.cc @@ -3,7 +3,7 @@ // found in the LICENSE file. #include "base/compiler_specific.h" -#include "base/stl_util-inl.h" +#include "base/stl_util.h" #include "base/string16.h" #include "chrome/test/testing_profile.h" #include "content/browser/browser_thread.h" diff --git a/content/browser/speech/audio_encoder.cc b/content/browser/speech/audio_encoder.cc index cd1132f..683ec0e 100644 --- a/content/browser/speech/audio_encoder.cc +++ b/content/browser/speech/audio_encoder.cc @@ -7,7 +7,7 @@ #include "base/basictypes.h" #include "base/logging.h" #include "base/memory/scoped_ptr.h" -#include "base/stl_util-inl.h" +#include "base/stl_util.h" #include "base/string_number_conversions.h" #include "third_party/flac/flac.h" #include "third_party/speex/speex.h" diff --git a/content/browser/tab_contents/navigation_controller_unittest.cc b/content/browser/tab_contents/navigation_controller_unittest.cc index 3ce0d3d..782af71 100644 --- a/content/browser/tab_contents/navigation_controller_unittest.cc +++ b/content/browser/tab_contents/navigation_controller_unittest.cc @@ -5,7 +5,7 @@ #include "base/file_util.h" #include "base/memory/scoped_ptr.h" #include "base/path_service.h" -#include "base/stl_util-inl.h" +#include "base/stl_util.h" #include "base/string_util.h" #include "base/utf_string_conversions.h" // These are only used for commented out tests. If someone wants to enable diff --git a/content/browser/webui/web_ui.cc b/content/browser/webui/web_ui.cc index 40209ab..4fed4da 100644 --- a/content/browser/webui/web_ui.cc +++ b/content/browser/webui/web_ui.cc @@ -6,7 +6,7 @@ #include "base/i18n/rtl.h" #include "base/json/json_writer.h" -#include "base/stl_util-inl.h" +#include "base/stl_util.h" #include "base/string_number_conversions.h" #include "base/utf_string_conversions.h" #include "base/values.h" |