| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "extensions/common/manifest_handlers/csp_info.h" | 5 #include "extensions/common/manifest_handlers/csp_info.h" |
| 6 #include "extensions/renderer/extension_injection_host.h" | 6 #include "extensions/renderer/extension_injection_host.h" |
| 7 | 7 |
| 8 namespace extensions { | 8 namespace extensions { |
| 9 | 9 |
| 10 ExtensionInjectionHost::ExtensionInjectionHost( | 10 ExtensionInjectionHost::ExtensionInjectionHost( |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 const GURL& ExtensionInjectionHost::url() const { | 23 const GURL& ExtensionInjectionHost::url() const { |
| 24 return extension_->url(); | 24 return extension_->url(); |
| 25 } | 25 } |
| 26 | 26 |
| 27 const std::string& ExtensionInjectionHost::name() const { | 27 const std::string& ExtensionInjectionHost::name() const { |
| 28 return extension_->name(); | 28 return extension_->name(); |
| 29 } | 29 } |
| 30 | 30 |
| 31 PermissionsData::AccessType ExtensionInjectionHost::CanExecuteOnFrame( | 31 PermissionsData::AccessType ExtensionInjectionHost::CanExecuteOnFrame( |
| 32 const GURL& document_url, | 32 const GURL& document_url, |
| 33 const GURL& top_frame_url, | 33 const GURL& top_frame_url, |
| 34 int tab_id, | 34 int tab_id, |
| 35 bool is_declarative) const { | 35 bool is_declarative) const { |
| 36 // If we don't have a tab id, we have no UI surface to ask for user consent. | |
| 37 // For now, we treat this as an automatic allow. | |
| 38 if (tab_id == -1) | |
| 39 return PermissionsData::ACCESS_ALLOWED; | |
| 40 | |
| 41 // Declarative user scripts use "page access" (from "permissions" section in | 36 // Declarative user scripts use "page access" (from "permissions" section in |
| 42 // manifest) whereas non-declarative user scripts use custom | 37 // manifest) whereas non-declarative user scripts use custom |
| 43 // "content script access" logic. | 38 // "content script access" logic. |
| 44 if (is_declarative) { | 39 if (is_declarative) { |
| 45 return extension_->permissions_data()->GetPageAccess( | 40 return extension_->permissions_data()->GetPageAccess( |
| 46 extension_.get(), | 41 extension_.get(), |
| 47 document_url, | 42 document_url, |
| 48 top_frame_url, | 43 top_frame_url, |
| 49 tab_id, | 44 tab_id, |
| 50 -1, // no process id | 45 -1, // no process id |
| (...skipping 13 matching lines...) Expand all Loading... |
| 64 // We notify the browser of any injection if the extension has no withheld | 59 // We notify the browser of any injection if the extension has no withheld |
| 65 // permissions (i.e., the permissions weren't restricted), but would have | 60 // permissions (i.e., the permissions weren't restricted), but would have |
| 66 // otherwise been affected by the scripts-require-action feature. | 61 // otherwise been affected by the scripts-require-action feature. |
| 67 return extension_->permissions_data()->withheld_permissions()->IsEmpty() && | 62 return extension_->permissions_data()->withheld_permissions()->IsEmpty() && |
| 68 PermissionsData::ScriptsMayRequireActionForExtension( | 63 PermissionsData::ScriptsMayRequireActionForExtension( |
| 69 extension_.get(), | 64 extension_.get(), |
| 70 extension_->permissions_data()->active_permissions().get()); | 65 extension_->permissions_data()->active_permissions().get()); |
| 71 } | 66 } |
| 72 | 67 |
| 73 } // namespace extensions | 68 } // namespace extensions |
| OLD | NEW |