OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #include "extensions/test/test_permissions_provider.h" | |
6 | |
7 namespace extensions { | |
8 | |
9 TestPermissionsProvider::TestPermissionsProvider() {} | |
10 | |
11 TestPermissionsProvider::~TestPermissionsProvider() {} | |
12 | |
13 std::vector<APIPermissionInfo*> TestPermissionsProvider::GetAllPermissions() | |
14 const { | |
15 std::vector<APIPermissionInfo*> permissions; | |
tfarina
2014/04/11 05:00:26
I will look into this next.
Yoyo Zhou
2014/04/11 21:10:29
Add a TODO here. That helps distinguish between in
tfarina
2014/04/13 21:40:52
Done.
| |
16 return permissions; | |
17 } | |
18 | |
19 std::vector<PermissionsProvider::AliasInfo> | |
20 TestPermissionsProvider::GetAllAliases() const { | |
21 std::vector<PermissionsProvider::AliasInfo> aliases; | |
22 return aliases; | |
23 } | |
24 | |
25 } // namespace extensions | |
OLD | NEW |