| Index: chromeos/chromeos_paths.cc
|
| diff --git a/chromeos/chromeos_paths.cc b/chromeos/chromeos_paths.cc
|
| index 10dff7477c3f29bef6764fcf83358facda27b500..6e5f268ed108da3518140678f3415677d9c4514b 100644
|
| --- a/chromeos/chromeos_paths.cc
|
| +++ b/chromeos/chromeos_paths.cc
|
| @@ -33,6 +33,9 @@ const base::FilePath::CharType kUptimeFileName[] =
|
| const base::FilePath::CharType kUpdateRebootNeededUptimeFile[] =
|
| FILE_PATH_LITERAL("/var/run/chrome/update_reboot_needed_uptime");
|
|
|
| +const base::FilePath::CharType kDeviceLocalAccountCacheDir[] =
|
| + FILE_PATH_LITERAL("/var/cache/device_local_account_extensions");
|
| +
|
| bool PathProvider(int key, base::FilePath* result) {
|
| switch (key) {
|
| case FILE_DEFAULT_APP_ORDER:
|
| @@ -53,6 +56,9 @@ bool PathProvider(int key, base::FilePath* result) {
|
| case FILE_UPDATE_REBOOT_NEEDED_UPTIME:
|
| *result = base::FilePath(kUpdateRebootNeededUptimeFile);
|
| break;
|
| + case DIR_DEVICE_LOCAL_ACCOUNT_CACHE:
|
| + *result = base::FilePath(kDeviceLocalAccountCacheDir);
|
| + break;
|
| default:
|
| return false;
|
| }
|
|
|