| Index: chrome/common/chrome_paths.cc
|
| diff --git a/chrome/common/chrome_paths.cc b/chrome/common/chrome_paths.cc
|
| index 6f77510b3db9f6ecfd8ada04fa0a7e948c9ef843..15032b8aa1c7302353927a04a8afef52e906b610 100644
|
| --- a/chrome/common/chrome_paths.cc
|
| +++ b/chrome/common/chrome_paths.cc
|
| @@ -158,6 +158,11 @@ bool PathProvider(int key, FilePath* result) {
|
| return false;
|
| cur = cur.Append(FILE_PATH_LITERAL("shared"));
|
| break;
|
| + case chrome::DIR_PRINT_PREVIEW:
|
| + if (!PathService::Get(chrome::DIR_RESOURCES, &cur))
|
| + return false;
|
| + cur = cur.Append(FILE_PATH_LITERAL("print_preview"));
|
| + break;
|
| case chrome::DIR_INSPECTOR:
|
| if (!PathService::Get(chrome::DIR_RESOURCES, &cur))
|
| return false;
|
|
|