Skip to content

Commit

Permalink
Reporting: Add missing #include <utility>
Browse files Browse the repository at this point in the history
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}
  • Loading branch information
juliatuttle authored and Commit bot committed May 22, 2017
1 parent c10897a commit a35bbc8
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions net/reporting/reporting_cache.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include <memory>
#include <set>
#include <string>
#include <utility>
#include <vector>

#include "base/memory/ptr_util.h"
Expand Down
1 change: 1 addition & 0 deletions net/reporting/reporting_context.cc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#include "net/reporting/reporting_context.h"

#include <memory>
#include <utility>

#include "base/memory/ptr_util.h"
#include "base/observer_list.h"
Expand Down
1 change: 1 addition & 0 deletions net/reporting/reporting_delivery_agent.cc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

#include <map>
#include <string>
#include <utility>
#include <vector>

#include "base/bind.h"
Expand Down
1 change: 1 addition & 0 deletions net/reporting/reporting_garbage_collector.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

#include "net/reporting/reporting_garbage_collector.h"

#include <utility>
#include <vector>

#include "base/memory/ptr_util.h"
Expand Down
1 change: 1 addition & 0 deletions net/reporting/reporting_persister.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

#include "net/reporting/reporting_persister.h"

#include <utility>
#include <vector>

#include "base/memory/ptr_util.h"
Expand Down
1 change: 1 addition & 0 deletions net/reporting/reporting_report.cc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

#include <memory>
#include <string>
#include <utility>

#include "base/time/time.h"
#include "base/values.h"
Expand Down
1 change: 1 addition & 0 deletions net/reporting/reporting_service.cc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#include "net/reporting/reporting_service.h"

#include <memory>
#include <utility>

#include "base/bind.h"
#include "base/macros.h"
Expand Down
1 change: 1 addition & 0 deletions net/reporting/reporting_uploader.cc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

#include <memory>
#include <string>
#include <utility>
#include <vector>

#include "base/callback_helpers.h"
Expand Down
1 change: 1 addition & 0 deletions net/reporting/reporting_uploader_unittest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

#include <memory>
#include <string>
#include <utility>

#include "base/bind.h"
#include "base/callback.h"
Expand Down

0 comments on commit a35bbc8

Please sign in to comment.