| Index: chrome/common/chrome_paths.cc
|
| diff --git a/chrome/common/chrome_paths.cc b/chrome/common/chrome_paths.cc
|
| index 9ccf87e948c817a8691a6456c9442c895aae15ce..52f42fe180fde9d0a794cdead319e80f300f30d1 100644
|
| --- a/chrome/common/chrome_paths.cc
|
| +++ b/chrome/common/chrome_paths.cc
|
| @@ -577,6 +577,13 @@ bool PathProvider(int key, base::FilePath* result) {
|
| cur = cur.Append(FILE_PATH_LITERAL("NativeMessagingHosts"));
|
| break;
|
| #endif // defined(OS_LINUX) || (defined(OS_MACOSX) && !defined(OS_IOS))
|
| +#if !defined(OS_ANDROID)
|
| + case chrome::DIR_GLOBAL_GCM_STORE:
|
| + if (!PathService::Get(chrome::DIR_USER_DATA, &cur))
|
| + return false;
|
| + cur = cur.Append(kGCMStoreDirname);
|
| + break;
|
| +#endif // !defined(OS_ANDROID)
|
|
|
| default:
|
| return false;
|
|
|