From a35bbc87b95f73f8a5a704bc178763c389f29d1a Mon Sep 17 00:00:00 2001 From: juliatuttle Date: Mon, 22 May 2017 12:25:19 -0700 Subject: [PATCH] Reporting: Add missing #include What do you know, std::move doesn't come out of nowhere! BUG=704259 Review-Url: https://codereview.chromium.org/2895253002 Cr-Commit-Position: refs/heads/master@{#473655} --- net/reporting/reporting_cache.cc | 1 + net/reporting/reporting_context.cc | 1 + net/reporting/reporting_delivery_agent.cc | 1 + net/reporting/reporting_garbage_collector.cc | 1 + net/reporting/reporting_persister.cc | 1 + net/reporting/reporting_report.cc | 1 + net/reporting/reporting_service.cc | 1 + net/reporting/reporting_uploader.cc | 1 + net/reporting/reporting_uploader_unittest.cc | 1 + 9 files changed, 9 insertions(+) diff --git a/net/reporting/reporting_cache.cc b/net/reporting/reporting_cache.cc index 273ab9b0ea8381..7920a20ca4f435 100644 --- a/net/reporting/reporting_cache.cc +++ b/net/reporting/reporting_cache.cc @@ -8,6 +8,7 @@ #include #include #include +#include #include #include "base/memory/ptr_util.h" diff --git a/net/reporting/reporting_context.cc b/net/reporting/reporting_context.cc index 5111611a289df4..3ec6cf2d52a325 100644 --- a/net/reporting/reporting_context.cc +++ b/net/reporting/reporting_context.cc @@ -5,6 +5,7 @@ #include "net/reporting/reporting_context.h" #include +#include #include "base/memory/ptr_util.h" #include "base/observer_list.h" diff --git a/net/reporting/reporting_delivery_agent.cc b/net/reporting/reporting_delivery_agent.cc index d875f468b88c22..06fb6a81936144 100644 --- a/net/reporting/reporting_delivery_agent.cc +++ b/net/reporting/reporting_delivery_agent.cc @@ -6,6 +6,7 @@ #include #include +#include #include #include "base/bind.h" diff --git a/net/reporting/reporting_garbage_collector.cc b/net/reporting/reporting_garbage_collector.cc index a8cabe1a2dd428..50e6d562057c50 100644 --- a/net/reporting/reporting_garbage_collector.cc +++ b/net/reporting/reporting_garbage_collector.cc @@ -4,6 +4,7 @@ #include "net/reporting/reporting_garbage_collector.h" +#include #include #include "base/memory/ptr_util.h" diff --git a/net/reporting/reporting_persister.cc b/net/reporting/reporting_persister.cc index 4dcc032bb48368..92cdfbdd856d6c 100644 --- a/net/reporting/reporting_persister.cc +++ b/net/reporting/reporting_persister.cc @@ -4,6 +4,7 @@ #include "net/reporting/reporting_persister.h" +#include #include #include "base/memory/ptr_util.h" diff --git a/net/reporting/reporting_report.cc b/net/reporting/reporting_report.cc index 24e571a8eef9b2..b039bc1cd415e2 100644 --- a/net/reporting/reporting_report.cc +++ b/net/reporting/reporting_report.cc @@ -6,6 +6,7 @@ #include #include +#include #include "base/time/time.h" #include "base/values.h" diff --git a/net/reporting/reporting_service.cc b/net/reporting/reporting_service.cc index 1da91004b54076..8474aa0f757d00 100644 --- a/net/reporting/reporting_service.cc +++ b/net/reporting/reporting_service.cc @@ -5,6 +5,7 @@ #include "net/reporting/reporting_service.h" #include +#include #include "base/bind.h" #include "base/macros.h" diff --git a/net/reporting/reporting_uploader.cc b/net/reporting/reporting_uploader.cc index bbc03479ba48ea..a78811d0b3d540 100644 --- a/net/reporting/reporting_uploader.cc +++ b/net/reporting/reporting_uploader.cc @@ -6,6 +6,7 @@ #include #include +#include #include #include "base/callback_helpers.h" diff --git a/net/reporting/reporting_uploader_unittest.cc b/net/reporting/reporting_uploader_unittest.cc index 8dc7e6ec73c469..dd04e49c23890a 100644 --- a/net/reporting/reporting_uploader_unittest.cc +++ b/net/reporting/reporting_uploader_unittest.cc @@ -6,6 +6,7 @@ #include #include +#include #include "base/bind.h" #include "base/callback.h"