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

Side by Side Diff: extensions/common/api/_api_features.json

Issue 866893003: Enable visibleOnAllWorkspaces on stable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « extensions/browser/app_window/native_app_window.h ('k') | extensions/common/api/app_window.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 // This features file defines extension APIs implemented under src/extensions. 5 // This features file defines extension APIs implemented under src/extensions.
6 // See extensions/common/features/* to understand this file, in particular 6 // See extensions/common/features/* to understand this file, in particular
7 // feature.h, simple_feature.h, and base_feature_provider.h. 7 // feature.h, simple_feature.h, and base_feature_provider.h.
8 // 8 //
9 // Note that specifying "web_page", "blessed_web_page", or "all" as a context 9 // Note that specifying "web_page", "blessed_web_page", or "all" as a context
10 // type will require manually updating chrome/renderer/resources/dispatcher.cc. 10 // type will require manually updating chrome/renderer/resources/dispatcher.cc.
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 "contexts": ["blessed_extension"], 46 "contexts": ["blessed_extension"],
47 "extension_types": ["extension"], 47 "extension_types": ["extension"],
48 "noparent": true, 48 "noparent": true,
49 "component_extensions_auto_granted": false, 49 "component_extensions_auto_granted": false,
50 "whitelist": [ 50 "whitelist": [
51 "B9EF10DDFEA11EF77873CC5009809E5037FC4C7A", // Google input tools 51 "B9EF10DDFEA11EF77873CC5009809E5037FC4C7A", // Google input tools
52 "06BE211D5F014BAB34BC22D9DDA09C63A81D828E", // Official xkb extension 52 "06BE211D5F014BAB34BC22D9DDA09C63A81D828E", // Official xkb extension
53 "F94EE6AB36D6C6588670B2B01EB65212D9C64E33" // Open source xkb extension 53 "F94EE6AB36D6C6588670B2B01EB65212D9C64E33" // Open source xkb extension
54 ] 54 ]
55 }], 55 }],
56 // This does not need to be a complex feature if we could set "noparent" here.
57 // But set "noparent" makes this feature available on stable channel. The
58 // issue is tracked in crbug.com/415750.
59 "app.window.canSetVisibleOnAllWorkspaces": [{
60 "contexts": ["blessed_extension"],
61 "channel": "dev"
62 }],
63 "app.currentWindowInternal": { 56 "app.currentWindowInternal": {
64 "noparent": true, 57 "noparent": true,
65 "internal": true, 58 "internal": true,
66 "channel": "stable", 59 "channel": "stable",
67 "contexts": ["blessed_extension"] 60 "contexts": ["blessed_extension"]
68 }, 61 },
69 "app.currentWindowInternal.setShape": { 62 "app.currentWindowInternal.setShape": {
70 "dependencies": ["permission:app.window.shape"], 63 "dependencies": ["permission:app.window.shape"],
71 "contexts": ["blessed_extension"] 64 "contexts": ["blessed_extension"]
72 }, 65 },
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 }], 416 }],
424 "webViewRequest": [{ 417 "webViewRequest": [{
425 "dependencies": ["permission:webview"], 418 "dependencies": ["permission:webview"],
426 "contexts": ["blessed_extension"] 419 "contexts": ["blessed_extension"]
427 }, { 420 }, {
428 "channel": "stable", 421 "channel": "stable",
429 "contexts": ["webui"], 422 "contexts": ["webui"],
430 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"] 423 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"]
431 }] 424 }]
432 } 425 }
OLDNEW
« no previous file with comments | « extensions/browser/app_window/native_app_window.h ('k') | extensions/common/api/app_window.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698