| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 | 5 |
| 6 /** @const */ var Constants = { | 6 /** @const */ var Constants = { |
| 7 /** | 7 /** |
| 8 * Key to access wallpaper rss in chrome.storage.local. | 8 * Key to access wallpaper rss in chrome.storage.local. |
| 9 */ | 9 */ |
| 10 AccessLocalRssKey: 'wallpaper-picker-surprise-rss-key', | 10 AccessLocalRssKey: 'wallpaper-picker-surprise-rss-key', |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 * Suffix to append to file name if it is a thumbnail. | 84 * Suffix to append to file name if it is a thumbnail. |
| 85 */ | 85 */ |
| 86 CustomWallpaperThumbnailSuffix: '_thumbnail', | 86 CustomWallpaperThumbnailSuffix: '_thumbnail', |
| 87 | 87 |
| 88 /** | 88 /** |
| 89 * Wallpaper directory enum. | 89 * Wallpaper directory enum. |
| 90 */ | 90 */ |
| 91 WallpaperDirNameEnum: { | 91 WallpaperDirNameEnum: { |
| 92 ORIGINAL: 'original', | 92 ORIGINAL: 'original', |
| 93 THUMBNAIL: 'thumbnail' | 93 THUMBNAIL: 'thumbnail' |
| 94 } | 94 }, |
| 95 |
| 96 /** |
| 97 * The filename prefix for a third party wallpaper. |
| 98 */ |
| 99 ThirdPartyWallpaperPrefix: 'third_party_' |
| 95 }; | 100 }; |
| OLD | NEW |