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

Side by Side Diff: extensions/common/extensions_aliases.cc

Issue 2379763003: Extract permission alias info from PermissionsProvider (Closed)
Patch Set: . Created 4 years, 2 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
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "extensions/common/extensions_aliases.h"
6
7 namespace extensions {
8
9 std::vector<Alias> GetExtensionsPermissionAliases() {
10 return {
11 Alias("alwaysOnTopWindows" /* alias */,
Devlin 2016/10/07 21:05:59 nit (from other comment) please do just add // Fir
tbarzic 2016/10/07 21:29:32 Done.
12 "app.window.alwaysOnTop" /* real name */),
13 Alias("fullscreen" /* alias */, "app.window.fullscreen" /* real name */),
14 Alias("overrideEscFullscreen" /* alias */,
15 "app.window.fullscreen.overrideEsc" /* real name */),
16 Alias("unlimited_storage" /* alias */,
17 "unlimitedStorage" /* real name */)};
18 }
19
20 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/common/extensions_aliases.h ('k') | extensions/common/permissions/extensions_api_permissions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698