1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- https://chromium-review.googlesource.com/c/chromium/src/+/4406547
- From 81b275691c28e2a8ae91514305a0e213461fcda4 Mon Sep 17 00:00:00 2001
- From: Stephan Hartmann <stha09@googlemail.com>
- Date: Tue, 11 Apr 2023 13:30:43 +0000
- Subject: [PATCH] IWYU: add stdint.h for various integer types in //components
- Bug: 957519
- Change-Id: I920fc7c442b05c3522a6533c4b0ec83b403fd0f0
- Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4406547
- Reviewed-by: Colin Blundell <blundell@chromium.org>
- Commit-Queue: Stephan Hartmann <stha09@googlemail.com>
- Cr-Commit-Position: refs/heads/main@{#1128605}
- --- a/components/autofill/core/browser/autofill_ablation_study.h
- +++ b/components/autofill/core/browser/autofill_ablation_study.h
- @@ -5,6 +5,8 @@
- #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_ABLATION_STUDY_H_
- #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_ABLATION_STUDY_H_
-
- +#include <stdint.h>
- +
- #include <string>
-
- class GURL;
- --- a/components/crash/core/app/crash_reporter_client.h
- +++ b/components/crash/core/app/crash_reporter_client.h
- @@ -5,6 +5,8 @@
- #ifndef COMPONENTS_CRASH_CORE_APP_CRASH_REPORTER_CLIENT_H_
- #define COMPONENTS_CRASH_CORE_APP_CRASH_REPORTER_CLIENT_H_
-
- +#include <stdint.h>
- +
- #include <string>
-
- #include "build/build_config.h"
- --- a/components/feature_engagement/internal/event_storage_validator.h
- +++ b/components/feature_engagement/internal/event_storage_validator.h
- @@ -5,6 +5,8 @@
- #ifndef COMPONENTS_FEATURE_ENGAGEMENT_INTERNAL_EVENT_STORAGE_VALIDATOR_H_
- #define COMPONENTS_FEATURE_ENGAGEMENT_INTERNAL_EVENT_STORAGE_VALIDATOR_H_
-
- +#include <stdint.h>
- +
- #include <string>
-
- namespace feature_engagement {
- --- a/components/omnibox/browser/on_device_head_model.h
- +++ b/components/omnibox/browser/on_device_head_model.h
- @@ -5,6 +5,8 @@
- #ifndef COMPONENTS_OMNIBOX_BROWSER_ON_DEVICE_HEAD_MODEL_H_
- #define COMPONENTS_OMNIBOX_BROWSER_ON_DEVICE_HEAD_MODEL_H_
-
- +#include <stdint.h>
- +
- #include <string>
- #include <utility>
- #include <vector>
- --- a/components/password_manager/core/browser/generation/password_generator.h
- +++ b/components/password_manager/core/browser/generation/password_generator.h
- @@ -5,6 +5,8 @@
- #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_GENERATION_PASSWORD_GENERATOR_H_
- #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_GENERATION_PASSWORD_GENERATOR_H_
-
- +#include <stdint.h>
- +
- #include <string>
-
-
- diff --git a/components/payments/content/utility/fingerprint_parser.h b/components/payments/content/utility/fingerprint_parser.h
- index e7983056517e8..3c3f83087002a 100644
- --- a/components/payments/content/utility/fingerprint_parser.h
- +++ b/components/payments/content/utility/fingerprint_parser.h
- @@ -6,6 +6,7 @@
- #define COMPONENTS_PAYMENTS_CONTENT_UTILITY_FINGERPRINT_PARSER_H_
-
- #include <stddef.h>
- +#include <stdint.h>
-
- #include <string>
- #include <vector>
- --- a/components/viz/common/view_transition_element_resource_id.h
- +++ b/components/viz/common/view_transition_element_resource_id.h
- @@ -5,6 +5,8 @@
- #ifndef COMPONENTS_VIZ_COMMON_VIEW_TRANSITION_ELEMENT_RESOURCE_ID_H_
- #define COMPONENTS_VIZ_COMMON_VIEW_TRANSITION_ELEMENT_RESOURCE_ID_H_
-
- +#include <stdint.h>
- +
- #include <string>
- #include <vector>
-
|