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

Side by Side Diff: extensions/common/permissions/extensions_api_permissions.cc

Issue 1543053002: Switch to standard integer types in extensions/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@int-extensions-browser
Patch Set: Created 5 years 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 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 #include "extensions/common/permissions/extensions_api_permissions.h" 5 #include "extensions/common/permissions/extensions_api_permissions.h"
6 6
7 #include <stddef.h>
8
7 #include <vector> 9 #include <vector>
8 10
11 #include "base/macros.h"
9 #include "extensions/common/permissions/api_permission.h" 12 #include "extensions/common/permissions/api_permission.h"
10 #include "extensions/common/permissions/socket_permission.h" 13 #include "extensions/common/permissions/socket_permission.h"
11 #include "extensions/common/permissions/usb_device_permission.h" 14 #include "extensions/common/permissions/usb_device_permission.h"
12 #include "grit/extensions_strings.h" 15 #include "grit/extensions_strings.h"
13 16
14 namespace extensions { 17 namespace extensions {
15 18
16 namespace { 19 namespace {
17 20
18 const char kOldAlwaysOnTopWindowsPermission[] = "alwaysOnTopWindows"; 21 const char kOldAlwaysOnTopWindowsPermission[] = "alwaysOnTopWindows";
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 kOldFullscreenPermission)); 132 kOldFullscreenPermission));
130 aliases.push_back( 133 aliases.push_back(
131 PermissionsProvider::AliasInfo("app.window.fullscreen.overrideEsc", 134 PermissionsProvider::AliasInfo("app.window.fullscreen.overrideEsc",
132 kOldOverrideEscFullscreenPermission)); 135 kOldOverrideEscFullscreenPermission));
133 aliases.push_back(PermissionsProvider::AliasInfo( 136 aliases.push_back(PermissionsProvider::AliasInfo(
134 "unlimitedStorage", kOldUnlimitedStoragePermission)); 137 "unlimitedStorage", kOldUnlimitedStoragePermission));
135 return aliases; 138 return aliases;
136 } 139 }
137 140
138 } // namespace extensions 141 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/common/permissions/base_set_operators.h ('k') | extensions/common/permissions/manifest_permission.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698