Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(598)

Side by Side Diff: chrome/browser/resources/chromeos/wallpaper_manager/js/constants.js

Issue 1566713005: Make the third party wallpaper syncable through different devices. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add a TODO Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698