Commit afe7d924 authored by Jose Dapena Paz's avatar Jose Dapena Paz Committed by Commit Bot

IWYU: missing <memory> include in payments android app description for std::unique_ptr

This fixes this build error:
./../components/payments/core/android_app_description.h:51:20: error: ‘unique_ptr’ is not a member of ‘std’
   51 |   std::vector<std::unique_ptr<AndroidActivityDescription>> activities;
      |                    ^~~~~~~~~~

Bug: 957519
Change-Id: I63cd3c3caa743c5b8a8ec0d91706d8655a1bbea6
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2360080Reviewed-by: default avatarSahel Sharify <sahel@chromium.org>
Commit-Queue: José Dapena Paz <jdapena@igalia.com>
Cr-Commit-Position: refs/heads/master@{#798673}
parent 2ef8fb13
......@@ -5,6 +5,7 @@
#ifndef COMPONENTS_PAYMENTS_CORE_ANDROID_APP_DESCRIPTION_H_
#define COMPONENTS_PAYMENTS_CORE_ANDROID_APP_DESCRIPTION_H_
#include <memory>
#include <string>
#include <vector>
......
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