Index: chrome/common/chrome_paths.cc |
diff --git a/chrome/common/chrome_paths.cc b/chrome/common/chrome_paths.cc |
index 6e55ab90435d1ad05b808f001844c82f10ce836a..f5df455bcef8659ac65889c5dcedc6265e76e48d 100644 |
--- a/chrome/common/chrome_paths.cc |
+++ b/chrome/common/chrome_paths.cc |
@@ -416,6 +416,11 @@ bool PathProvider(int key, base::FilePath* result) { |
cur = cur.Append(FILE_PATH_LITERAL("managed_users")); |
break; |
#endif |
+ case chrome::FILE_LIBADDRESSINPUT_CACHE: |
+ if (!PathService::Get(chrome::DIR_USER_DATA, &cur)) |
+ return false; |
+ cur = cur.Append(FILE_PATH_LITERAL("libaddressinput")); |
+ break; |
// The following are only valid in the development environment, and |
// will fail if executed from an installed executable (because the |
// generated path won't exist). |