Update broken references to image assets
[chromium-blink-merge.git] / extensions / test / test_permission_message_provider.h
blob7a095a33bd1b30b2a89403f25689c4e67ae0a539
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 #ifndef EXTENSIONS_TEST_TEST_PERMISSION_MESSAGE_PROVIDER_H_
6 #define EXTENSIONS_TEST_TEST_PERMISSION_MESSAGE_PROVIDER_H_
8 #include "base/macros.h"
9 #include "extensions/common/permissions/permission_message_provider.h"
11 namespace extensions {
13 class TestPermissionMessageProvider : public PermissionMessageProvider {
14 public:
15 TestPermissionMessageProvider();
16 ~TestPermissionMessageProvider() override;
18 private:
19 CoalescedPermissionMessages GetPermissionMessages(
20 const PermissionIDSet& permissions) const override;
21 bool IsPrivilegeIncrease(const PermissionSet* old_permissions,
22 const PermissionSet* new_permissions,
23 Manifest::Type extension_type) const override;
24 PermissionIDSet GetAllPermissionIDs(
25 const PermissionSet* permissions,
26 Manifest::Type extension_type) const override;
28 DISALLOW_COPY_AND_ASSIGN(TestPermissionMessageProvider);
31 } // namespace extensions
33 #endif // EXTENSIONS_TEST_TEST_PERMISSION_MESSAGE_PROVIDER_H_