OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/common/chrome_paths.h" | 5 #include "chrome/common/chrome_paths.h" |
6 | 6 |
7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/mac/bundle_locations.h" | 9 #include "base/mac/bundle_locations.h" |
10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
360 return false; | 360 return false; |
361 cur = cur.Append(FILE_PATH_LITERAL("resources")) | 361 cur = cur.Append(FILE_PATH_LITERAL("resources")) |
362 .Append(FILE_PATH_LITERAL("extension")); | 362 .Append(FILE_PATH_LITERAL("extension")); |
363 break; | 363 break; |
364 #if defined(OS_CHROMEOS) | 364 #if defined(OS_CHROMEOS) |
365 case chrome::DIR_CHROMEOS_WALLPAPERS: | 365 case chrome::DIR_CHROMEOS_WALLPAPERS: |
366 if (!PathService::Get(chrome::DIR_USER_DATA, &cur)) | 366 if (!PathService::Get(chrome::DIR_USER_DATA, &cur)) |
367 return false; | 367 return false; |
368 cur = cur.Append(FILE_PATH_LITERAL("wallpapers")); | 368 cur = cur.Append(FILE_PATH_LITERAL("wallpapers")); |
369 break; | 369 break; |
370 case chrome::DIR_CHROMEOS_WALLPAPER_THUMBNAILS: | |
371 if (!PathService::Get(chrome::DIR_USER_DATA, &cur)) | |
372 return false; | |
373 cur = cur.Append(FILE_PATH_LITERAL("wallpaper_thumbnails")); | |
374 break; | |
375 case chrome::FILE_DEFAULT_APP_ORDER: | 370 case chrome::FILE_DEFAULT_APP_ORDER: |
376 cur = FilePath(FILE_PATH_LITERAL(kDefaultAppOrderFileName)); | 371 cur = FilePath(FILE_PATH_LITERAL(kDefaultAppOrderFileName)); |
377 break; | 372 break; |
378 #endif | 373 #endif |
379 // The following are only valid in the development environment, and | 374 // The following are only valid in the development environment, and |
380 // will fail if executed from an installed executable (because the | 375 // will fail if executed from an installed executable (because the |
381 // generated path won't exist). | 376 // generated path won't exist). |
382 case chrome::DIR_GEN_TEST_DATA: | 377 case chrome::DIR_GEN_TEST_DATA: |
383 if (!PathService::Get(base::DIR_MODULE, &cur)) | 378 if (!PathService::Get(base::DIR_MODULE, &cur)) |
384 return false; | 379 return false; |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
483 return true; | 478 return true; |
484 } | 479 } |
485 | 480 |
486 // This cannot be done as a static initializer sadly since Visual Studio will | 481 // This cannot be done as a static initializer sadly since Visual Studio will |
487 // eliminate this object file if there is no direct entry point into it. | 482 // eliminate this object file if there is no direct entry point into it. |
488 void RegisterPathProvider() { | 483 void RegisterPathProvider() { |
489 PathService::RegisterProvider(PathProvider, PATH_START, PATH_END); | 484 PathService::RegisterProvider(PathProvider, PATH_START, PATH_END); |
490 } | 485 } |
491 | 486 |
492 } // namespace chrome | 487 } // namespace chrome |
OLD | NEW |