diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-10 00:37:40 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-10 00:37:40 +0000 |
commit | 2b62324eaf94dbd46d3cdc99aab04a349998f1f3 (patch) | |
tree | 21f6959f04d60af281b1abbcde7662a3754997d5 /content | |
parent | 8fccbe8a39d5e883dd5b25146f6ebec51de4e921 (diff) | |
download | chromium_src-2b62324eaf94dbd46d3cdc99aab04a349998f1f3.zip chromium_src-2b62324eaf94dbd46d3cdc99aab04a349998f1f3.tar.gz chromium_src-2b62324eaf94dbd46d3cdc99aab04a349998f1f3.tar.bz2 |
iwyu: Use callback_old.h where appropriate, part 1.
BUG=none
TEST=none
R=thakis@chromium.org
Review URL: http://codereview.chromium.org/6985009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@84725 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rw-r--r-- | content/browser/certificate_manager_model.cc | 1 | ||||
-rw-r--r-- | content/browser/geolocation/access_token_store.h | 1 | ||||
-rw-r--r-- | content/browser/gpu/gpu_data_manager.h | 2 | ||||
-rw-r--r-- | content/browser/gpu/gpu_process_host.h | 2 | ||||
-rw-r--r-- | content/browser/renderer_host/render_view_host_notification_task.h | 2 | ||||
-rw-r--r-- | content/browser/webui/web_ui.h | 2 |
6 files changed, 6 insertions, 4 deletions
diff --git a/content/browser/certificate_manager_model.cc b/content/browser/certificate_manager_model.cc index e7b1daf..489fb8c 100644 --- a/content/browser/certificate_manager_model.cc +++ b/content/browser/certificate_manager_model.cc @@ -4,6 +4,7 @@ #include "content/browser/certificate_manager_model.h" +#include "base/callback_old.h" #include "base/i18n/time_formatting.h" #include "base/logging.h" #include "base/utf_string_conversions.h" diff --git a/content/browser/geolocation/access_token_store.h b/content/browser/geolocation/access_token_store.h index 18a8329..ce42801 100644 --- a/content/browser/geolocation/access_token_store.h +++ b/content/browser/geolocation/access_token_store.h @@ -16,6 +16,7 @@ #include <map> +#include "base/callback_old.h" #include "base/memory/ref_counted.h" #include "base/string16.h" #include "content/browser/cancelable_request.h" diff --git a/content/browser/gpu/gpu_data_manager.h b/content/browser/gpu/gpu_data_manager.h index 77199e0..1f5f86e 100644 --- a/content/browser/gpu/gpu_data_manager.h +++ b/content/browser/gpu/gpu_data_manager.h @@ -9,7 +9,7 @@ #include <set> #include <string> -#include "base/callback.h" +#include "base/callback_old.h" #include "base/memory/scoped_ptr.h" #include "base/memory/singleton.h" #include "base/synchronization/lock.h" diff --git a/content/browser/gpu/gpu_process_host.h b/content/browser/gpu/gpu_process_host.h index 17ba8fe..abf7280 100644 --- a/content/browser/gpu/gpu_process_host.h +++ b/content/browser/gpu/gpu_process_host.h @@ -9,7 +9,7 @@ #include <map> #include <queue> -#include "base/callback.h" +#include "base/callback_old.h" #include "base/memory/linked_ptr.h" #include "base/threading/non_thread_safe.h" #include "content/browser/browser_child_process_host.h" diff --git a/content/browser/renderer_host/render_view_host_notification_task.h b/content/browser/renderer_host/render_view_host_notification_task.h index c8f5753..c1904ba 100644 --- a/content/browser/renderer_host/render_view_host_notification_task.h +++ b/content/browser/renderer_host/render_view_host_notification_task.h @@ -11,7 +11,7 @@ #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_NOTIFICATION_TASK_H_ #pragma once -#include "base/callback.h" +#include "base/callback_old.h" #include "base/task.h" #include "content/browser/browser_thread.h" #include "content/browser/renderer_host/render_view_host.h" diff --git a/content/browser/webui/web_ui.h b/content/browser/webui/web_ui.h index 910fc5c..ebf7867 100644 --- a/content/browser/webui/web_ui.h +++ b/content/browser/webui/web_ui.h @@ -10,7 +10,7 @@ #include <string> #include <vector> -#include "base/callback.h" +#include "base/callback_old.h" #include "base/compiler_specific.h" #include "base/string16.h" #include "content/common/page_transition_types.h" |