Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 | |
| OLD | NEW |