BookmarkManager: Fix 'new folder text field size changes on clicking it' issue.
[chromium-blink-merge.git] / chrome / browser / storage / durable_storage_permission_context.h
blob58757498ac3cc587abd6d3f8eb9b5b7b6c6e01b7
1 // Copyright 2015 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_BROWSER_STORAGE_DURABLE_STORAGE_PERMISSION_CONTEXT_H_
6 #define CHROME_BROWSER_STORAGE_DURABLE_STORAGE_PERMISSION_CONTEXT_H_
8 #include "chrome/browser/permissions/permission_context_base.h"
10 class DurableStoragePermissionContext : public PermissionContextBase {
11 public:
12 explicit DurableStoragePermissionContext(Profile* profile);
13 ~DurableStoragePermissionContext() override = default;
15 bool IsRestrictedToSecureOrigins() const override;
17 private:
18 DISALLOW_COPY_AND_ASSIGN(DurableStoragePermissionContext);
21 #endif // CHROME_BROWSER_STORAGE_DURABLE_STORAGE_PERMISSION_CONTEXT_H_