diff options
author | avi <avi@chromium.org> | 2015-12-22 16:39:26 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-12-23 00:40:04 +0000 |
commit | c9cec102fb11a2f3ca3156244446da2d3cdc36b8 (patch) | |
tree | b71268f8bd987d4a93d16e674f6e190462791f69 /extensions/browser/updater | |
parent | 389a09adfd1cfd035c37306cc10db23480930c28 (diff) | |
download | chromium_src-c9cec102fb11a2f3ca3156244446da2d3cdc36b8.zip chromium_src-c9cec102fb11a2f3ca3156244446da2d3cdc36b8.tar.gz chromium_src-c9cec102fb11a2f3ca3156244446da2d3cdc36b8.tar.bz2 |
Switch to standard integer types in extensions/browser/.
BUG=138542
TBR=benwells@chromium.org
Review URL: https://codereview.chromium.org/1549643002
Cr-Commit-Position: refs/heads/master@{#366702}
Diffstat (limited to 'extensions/browser/updater')
12 files changed, 16 insertions, 3 deletions
diff --git a/extensions/browser/updater/extension_cache.h b/extensions/browser/updater/extension_cache.h index c576ae6..e5a2a3f 100644 --- a/extensions/browser/updater/extension_cache.h +++ b/extensions/browser/updater/extension_cache.h @@ -9,6 +9,7 @@ #include "base/callback_forward.h" #include "base/files/file_path.h" +#include "base/macros.h" namespace extensions { diff --git a/extensions/browser/updater/extension_downloader.cc b/extensions/browser/updater/extension_downloader.cc index 1c7dafb..116ef7a 100644 --- a/extensions/browser/updater/extension_downloader.cc +++ b/extensions/browser/updater/extension_downloader.cc @@ -4,6 +4,8 @@ #include "extensions/browser/updater/extension_downloader.h" +#include <stddef.h> + #include <utility> #include "base/bind.h" diff --git a/extensions/browser/updater/extension_downloader.h b/extensions/browser/updater/extension_downloader.h index a5685c5..81b9134 100644 --- a/extensions/browser/updater/extension_downloader.h +++ b/extensions/browser/updater/extension_downloader.h @@ -12,8 +12,8 @@ #include <utility> #include <vector> -#include "base/basictypes.h" #include "base/compiler_specific.h" +#include "base/macros.h" #include "base/memory/linked_ptr.h" #include "base/memory/scoped_ptr.h" #include "base/memory/weak_ptr.h" diff --git a/extensions/browser/updater/manifest_fetch_data.h b/extensions/browser/updater/manifest_fetch_data.h index d55e2fd..0a31846d4 100644 --- a/extensions/browser/updater/manifest_fetch_data.h +++ b/extensions/browser/updater/manifest_fetch_data.h @@ -9,7 +9,7 @@ #include <set> #include <string> -#include "base/basictypes.h" +#include "base/macros.h" #include "url/gurl.h" namespace extensions { diff --git a/extensions/browser/updater/null_extension_cache.h b/extensions/browser/updater/null_extension_cache.h index 1a2161a..465b3a0 100644 --- a/extensions/browser/updater/null_extension_cache.h +++ b/extensions/browser/updater/null_extension_cache.h @@ -5,6 +5,7 @@ #ifndef EXTENSIONS_BROWSER_UPDATER_NULL_EXTENSION_CACHE_H_ #define EXTENSIONS_BROWSER_UPDATER_NULL_EXTENSION_CACHE_H_ +#include "base/macros.h" #include "extensions/browser/updater/extension_cache.h" namespace extensions { diff --git a/extensions/browser/updater/request_queue.h b/extensions/browser/updater/request_queue.h index 0e3d2eb..cce1a93 100644 --- a/extensions/browser/updater/request_queue.h +++ b/extensions/browser/updater/request_queue.h @@ -5,6 +5,8 @@ #ifndef EXTENSIONS_BROWSER_UPDATER_REQUEST_QUEUE_H_ #define EXTENSIONS_BROWSER_UPDATER_REQUEST_QUEUE_H_ +#include <stddef.h> + #include <deque> #include <utility> diff --git a/extensions/browser/updater/request_queue_impl.h b/extensions/browser/updater/request_queue_impl.h index 9e88824..24adca6 100644 --- a/extensions/browser/updater/request_queue_impl.h +++ b/extensions/browser/updater/request_queue_impl.h @@ -5,6 +5,8 @@ #ifndef EXTENSIONS_BROWSER_UPDATER_REQUEST_QUEUE_IMPL_H_ #define EXTENSIONS_BROWSER_UPDATER_REQUEST_QUEUE_IMPL_H_ +#include <stddef.h> + #include <algorithm> #include <utility> diff --git a/extensions/browser/updater/safe_manifest_parser.h b/extensions/browser/updater/safe_manifest_parser.h index 9f31ab6..b655983 100644 --- a/extensions/browser/updater/safe_manifest_parser.h +++ b/extensions/browser/updater/safe_manifest_parser.h @@ -7,8 +7,8 @@ #include <string> -#include "base/basictypes.h" #include "base/callback.h" +#include "base/macros.h" #include "base/memory/scoped_ptr.h" #include "content/public/browser/utility_process_host_client.h" #include "extensions/browser/updater/manifest_fetch_data.h" diff --git a/extensions/browser/updater/update_client_config.h b/extensions/browser/updater/update_client_config.h index 19fed55..e54fde4 100644 --- a/extensions/browser/updater/update_client_config.h +++ b/extensions/browser/updater/update_client_config.h @@ -7,6 +7,7 @@ #include <string> +#include "base/macros.h" #include "base/memory/ref_counted.h" #include "components/update_client/configurator.h" diff --git a/extensions/browser/updater/update_install_shim.h b/extensions/browser/updater/update_install_shim.h index 586e94e..518866a 100644 --- a/extensions/browser/updater/update_install_shim.h +++ b/extensions/browser/updater/update_install_shim.h @@ -9,6 +9,7 @@ #include "base/callback.h" #include "base/files/file_path.h" +#include "base/macros.h" #include "components/update_client/update_client.h" namespace base { diff --git a/extensions/browser/updater/update_service_factory.h b/extensions/browser/updater/update_service_factory.h index a31a668..521070a 100644 --- a/extensions/browser/updater/update_service_factory.h +++ b/extensions/browser/updater/update_service_factory.h @@ -5,6 +5,7 @@ #ifndef EXTENSIONS_BROWSER_UPDATER_UPDATE_SERVICE_FACTORY_H_ #define EXTENSIONS_BROWSER_UPDATER_UPDATE_SERVICE_FACTORY_H_ +#include "base/macros.h" #include "base/memory/singleton.h" #include "components/keyed_service/content/browser_context_keyed_service_factory.h" diff --git a/extensions/browser/updater/update_service_unittest.cc b/extensions/browser/updater/update_service_unittest.cc index 2ce4b95..283ff20 100644 --- a/extensions/browser/updater/update_service_unittest.cc +++ b/extensions/browser/updater/update_service_unittest.cc @@ -2,6 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#include <stddef.h> + #include <vector> #include "base/files/file_util.h" |