Cast: Stop logging kVideoFrameSentToEncoder and rename a couple events.
[chromium-blink-merge.git] / chrome / common / extensions / permissions / chrome_api_permissions.h
blob9341a668bb311a434528b6d7fb752ac0ce6648e1
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
3 // found in the LICENSE file.
5 #ifndef CHROME_COMMON_EXTENSIONS_PERMISSIONS_CHROME_API_PERMISSIONS_H_
6 #define CHROME_COMMON_EXTENSIONS_PERMISSIONS_CHROME_API_PERMISSIONS_H_
8 #include <vector>
10 #include "base/compiler_specific.h"
11 #include "extensions/common/permissions/permissions_provider.h"
13 namespace extensions {
15 // Registers the permissions used in Chrome with the PermissionsInfo global.
16 class ChromeAPIPermissions : public PermissionsProvider {
17 public:
18 virtual std::vector<APIPermissionInfo*> GetAllPermissions() const OVERRIDE;
19 virtual std::vector<PermissionsProvider::AliasInfo> GetAllAliases() const
20 OVERRIDE;
23 } // namespace extensions
25 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_CHROME_API_PERMISSIONS_H_