#ifndef CHROME_BROWSER_APPS_PLATFORM_APPS_API_MEDIA_GALLERIES_MEDIA_GALLERIES_API_H_
#define CHROME_BROWSER_APPS_PLATFORM_APPS_API_MEDIA_GALLERIES_MEDIA_GALLERIES_API_H_
#include <stdint.h>
#include <memory>
#include <string>
#include <vector>
#include "base/functional/callback_forward.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "chrome/browser/media_galleries/gallery_watch_manager_observer.h"
#include "chrome/browser/media_galleries/media_file_system_registry.h"
#include "chrome/common/apps/platform_apps/api/media_galleries.h"
#include "chrome/common/media_galleries/metadata_types.h"
#include "chrome/services/media_gallery_util/public/mojom/media_parser.mojom.h"
#include "components/storage_monitor/media_storage_util.h"
#include "extensions/browser/browser_context_keyed_api_factory.h"
#include "extensions/browser/event_router.h"
#include "extensions/browser/extension_event_histogram_value.h"
#include "extensions/browser/extension_function.h"
namespace content {
class BlobHandle;
}
class SafeMediaMetadataParser;
namespace chrome_apps {
namespace api {
class MediaGalleriesEventRouter : public extensions::BrowserContextKeyedAPI,
public GalleryWatchManagerObserver,
public extensions::EventRouter::Observer { … };
class MediaGalleriesGetMediaFileSystemsFunction : public ExtensionFunction { … };
class MediaGalleriesAddUserSelectedFolderFunction : public ExtensionFunction { … };
class MediaGalleriesGetMetadataFunction : public ExtensionFunction { … };
class MediaGalleriesAddGalleryWatchFunction : public ExtensionFunction { … };
class MediaGalleriesRemoveGalleryWatchFunction : public ExtensionFunction { … };
}
}
#endif