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

Side by Side Diff: chrome/common/extensions/api/wallpaper.json

Issue 1004263002: Disable surprise me automatically if the current wallpaper was set by a third party application. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address the code review comments. Created 5 years, 9 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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 { 6 {
7 "namespace":"wallpaper", 7 "namespace":"wallpaper",
8 "compiler_options": { 8 "compiler_options": {
9 "implemented_in": "chrome/browser/chromeos/extensions/wallpaper_api.h" 9 "implemented_in": "chrome/browser/chromeos/extensions/wallpaper_api.h"
10 }, 10 },
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 { 53 {
54 "type": "binary", 54 "type": "binary",
55 "optional": true, 55 "optional": true,
56 "name": "thumbnail", 56 "name": "thumbnail",
57 "description": "The jpeg encoded wallpaper thumbnail. It is genera ted by resizing the wallpaper to 128x60." 57 "description": "The jpeg encoded wallpaper thumbnail. It is genera ted by resizing the wallpaper to 128x60."
58 } 58 }
59 ] 59 ]
60 } 60 }
61 ] 61 ]
62 } 62 }
63 ] 63 ],
64 "events": [
bshe 2015/03/16 14:02:40 this should go to wallpaper_private.json. Only our
65 {
66 "name": "OnWallpaperChangedBy3rdParty",
67 "type": "function",
68 "description": "This event is sent when the current wallpaper was set by a third party application."
69 }
70 ]
64 } 71 }
65 ] 72 ]
66 73
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698