1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
ash / wallpaper / sea_pen_wallpaper_manager_session_delegate_impl.h [blame]
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_WALLPAPER_SEA_PEN_WALLPAPER_MANAGER_SESSION_DELEGATE_IMPL_H_
#define ASH_WALLPAPER_SEA_PEN_WALLPAPER_MANAGER_SESSION_DELEGATE_IMPL_H_
#include "ash/wallpaper/sea_pen_wallpaper_manager.h"
class AccountId;
namespace ash {
class SeaPenWallpaperManagerSessionDelegateImpl
: public SeaPenWallpaperManager::SessionDelegate {
public:
SeaPenWallpaperManagerSessionDelegateImpl();
SeaPenWallpaperManagerSessionDelegateImpl(
const SeaPenWallpaperManagerSessionDelegateImpl&) = delete;
SeaPenWallpaperManagerSessionDelegateImpl& operator=(
const SeaPenWallpaperManagerSessionDelegateImpl&) = delete;
~SeaPenWallpaperManagerSessionDelegateImpl() override;
// SeaPenWallpaperManager::SessionDelegate:
base::FilePath GetStorageDirectory(const AccountId& account_id) override;
};
} // namespace ash
#endif // ASH_WALLPAPER_SEA_PEN_WALLPAPER_MANAGER_SESSION_DELEGATE_IMPL_H_