Commit 046deafc authored by Jose Dapena Paz's avatar Jose Dapena Paz Committed by Commit Bot

IWYU: missing include for std::string in csp_source_list.h

Build error in GCC:
../../services/network/public/cpp/content_security_policy/csp_source_list.h:19:6: error: ‘string’ in namespace ‘std’ does not name a type

Bug: 819294
Change-Id: I9c8665050cae038530a79323b65932a124adf2a1
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2067074
Commit-Queue: Lucas Gadani <lfg@chromium.org>
Reviewed-by: default avatarLucas Gadani <lfg@chromium.org>
Cr-Commit-Position: refs/heads/master@{#743946}
parent abe371ba
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
#ifndef SERVICES_NETWORK_PUBLIC_CPP_CONTENT_SECURITY_POLICY_CSP_SOURCE_LIST_H_ #ifndef SERVICES_NETWORK_PUBLIC_CPP_CONTENT_SECURITY_POLICY_CSP_SOURCE_LIST_H_
#define SERVICES_NETWORK_PUBLIC_CPP_CONTENT_SECURITY_POLICY_CSP_SOURCE_LIST_H_ #define SERVICES_NETWORK_PUBLIC_CPP_CONTENT_SECURITY_POLICY_CSP_SOURCE_LIST_H_
#include <string>
#include <vector> #include <vector>
#include "base/component_export.h" #include "base/component_export.h"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment