| // Copyright 2019 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| #ifndef COMPONENTS_SHARING_MESSAGE_SHARING_APP_H_ |
| #define COMPONENTS_SHARING_MESSAGE_SHARING_APP_H_ |
| #include "base/memory/raw_ptr.h" |
| #include "ui/gfx/image/image.h" |
| // Represents an external app shown in sharing dialogs. |
| SharingApp(const gfx::VectorIcon* vector_icon, |
| SharingApp(SharingApp&& other); |
| SharingApp(const SharingApp&) = delete; |
| SharingApp& operator=(const SharingApp&) = delete; |
| raw_ptr<const gfx::VectorIcon> vector_icon = nullptr; |
| #endif // COMPONENTS_SHARING_MESSAGE_SHARING_APP_H_ |