// Copyright 2014 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_USER_MANAGER_USER_IMAGE_USER_IMAGE_H_ #define COMPONENTS_USER_MANAGER_USER_IMAGE_USER_IMAGE_H_ #include <memory> #include "base/files/file_path.h" #include "base/memory/ref_counted_memory.h" #include "components/user_manager/user_manager_export.h" #include "ui/gfx/image/image_skia.h" #include "url/gurl.h" namespace user_manager { // Wrapper class storing a still image and its bytes representation for // WebUI in a web-compatible format such as JPEG. Could be used for storing // profile images and user wallpapers. class USER_MANAGER_EXPORT UserImage { … }; } // namespace user_manager #endif // COMPONENTS_USER_MANAGER_USER_IMAGE_USER_IMAGE_H_