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

ash / ambient / ambient_photo_cache_settings.h [blame]

// Copyright 2023 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_AMBIENT_AMBIENT_PHOTO_CACHE_SETTINGS_H_
#define ASH_AMBIENT_AMBIENT_PHOTO_CACHE_SETTINGS_H_

#include "ash/ash_export.h"

namespace base {
class FilePath;
}  // namespace base

namespace ash {

ASH_EXPORT const base::FilePath& GetAmbientPhotoCacheRootDir();
ASH_EXPORT const base::FilePath& GetAmbientBackupPhotoCacheRootDir();

ASH_EXPORT void SetAmbientPhotoCacheRootDirForTesting(base::FilePath root_dir);
ASH_EXPORT void SetAmbientBackupPhotoCacheRootDirForTesting(
    base::FilePath root_dir);

}  // namespace ash

#endif  // ASH_AMBIENT_AMBIENT_PHOTO_CACHE_SETTINGS_H_