Delete chrome.mediaGalleriesPrivate because the functionality unique to it has since...
[chromium-blink-merge.git] / chrome / renderer / extensions / renderer_permissions_policy_delegate.h
blob1c2cdacae9b4985568c48ccdbe8f4b1787484363
1 // Copyright 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_RENDERER_EXTENSIONS_RENDERER_PERMISSIONS_POLICY_DELEGATE_H_
6 #define CHROME_RENDERER_EXTENSIONS_RENDERER_PERMISSIONS_POLICY_DELEGATE_H_
8 #include "extensions/common/permissions/permissions_data.h"
10 namespace extensions {
12 class Dispatcher;
14 // Policy delegate for the renderer process.
15 class RendererPermissionsPolicyDelegate
16 : public PermissionsData::PolicyDelegate {
17 public:
18 explicit RendererPermissionsPolicyDelegate(Dispatcher* dispatcher);
19 ~RendererPermissionsPolicyDelegate() override;
21 bool CanExecuteScriptOnPage(const Extension* extension,
22 const GURL& document_url,
23 const GURL& top_document_url,
24 int tab_id,
25 int process_id,
26 std::string* error) override;
28 private:
29 Dispatcher* dispatcher_;
31 DISALLOW_COPY_AND_ASSIGN(RendererPermissionsPolicyDelegate);
34 } // namespace extensions
36 #endif // CHROME_RENDERER_EXTENSIONS_RENDERER_PERMISSIONS_POLICY_DELEGATE_H_