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.
5 #include "extensions/test/test_permission_message_provider.h"
9 TestPermissionMessageProvider::TestPermissionMessageProvider() {
12 TestPermissionMessageProvider::~TestPermissionMessageProvider() {
15 PermissionMessages
TestPermissionMessageProvider::GetPermissionMessages(
16 const PermissionIDSet
& permissions
) const {
17 return PermissionMessages();
20 bool TestPermissionMessageProvider::IsPrivilegeIncrease(
21 const PermissionSet
* old_permissions
,
22 const PermissionSet
* new_permissions
,
23 Manifest::Type extension_type
) const {
27 PermissionIDSet
TestPermissionMessageProvider::GetAllPermissionIDs(
28 const PermissionSet
* permissions
,
29 Manifest::Type extension_type
) const {
30 return PermissionIDSet();
33 } // namespace extensions