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

Side by Side Diff: chrome/common/extensions/permissions/chrome_api_permissions.h

Issue 622373003: Replacing the OVERRIDE with override in chrome/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resolved Error Created 6 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
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 #ifndef CHROME_COMMON_EXTENSIONS_PERMISSIONS_CHROME_API_PERMISSIONS_H_ 5 #ifndef CHROME_COMMON_EXTENSIONS_PERMISSIONS_CHROME_API_PERMISSIONS_H_
6 #define CHROME_COMMON_EXTENSIONS_PERMISSIONS_CHROME_API_PERMISSIONS_H_ 6 #define CHROME_COMMON_EXTENSIONS_PERMISSIONS_CHROME_API_PERMISSIONS_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "extensions/common/permissions/permissions_provider.h" 11 #include "extensions/common/permissions/permissions_provider.h"
12 12
13 namespace extensions { 13 namespace extensions {
14 14
15 // Registers the permissions used in Chrome with the PermissionsInfo global. 15 // Registers the permissions used in Chrome with the PermissionsInfo global.
16 class ChromeAPIPermissions : public PermissionsProvider { 16 class ChromeAPIPermissions : public PermissionsProvider {
17 public: 17 public:
18 virtual std::vector<APIPermissionInfo*> GetAllPermissions() const OVERRIDE; 18 virtual std::vector<APIPermissionInfo*> GetAllPermissions() const override;
19 virtual std::vector<PermissionsProvider::AliasInfo> GetAllAliases() const 19 virtual std::vector<PermissionsProvider::AliasInfo> GetAllAliases() const
20 OVERRIDE; 20 override;
21 }; 21 };
22 22
23 } // namespace extensions 23 } // namespace extensions
24 24
25 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_CHROME_API_PERMISSIONS_H_ 25 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_CHROME_API_PERMISSIONS_H_
OLDNEW
« no previous file with comments | « chrome/common/extensions/manifest_url_handler.h ('k') | chrome/common/icon_with_badge_image_source.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698