remove name parameter from AllowIndexedDB
https://chromium-review.googlesource.com/c/1306914
This commit is contained in:
parent
600c3f2c2f
commit
93fbb6c092
2 changed files with 1 additions and 3 deletions
|
@ -45,7 +45,6 @@ bool ContentSettingsObserver::AllowStorage(bool local) {
|
|||
}
|
||||
|
||||
bool ContentSettingsObserver::AllowIndexedDB(
|
||||
const blink::WebString& name,
|
||||
const blink::WebSecurityOrigin& security_origin) {
|
||||
blink::WebFrame* frame = render_frame()->GetWebFrame();
|
||||
if (frame->GetSecurityOrigin().IsUnique() ||
|
||||
|
|
|
@ -22,8 +22,7 @@ class ContentSettingsObserver : public content::RenderFrameObserver,
|
|||
const blink::WebString& display_name,
|
||||
unsigned estimated_size) override;
|
||||
bool AllowStorage(bool local) override;
|
||||
bool AllowIndexedDB(const blink::WebString& name,
|
||||
const blink::WebSecurityOrigin& security_origin) override;
|
||||
bool AllowIndexedDB(const blink::WebSecurityOrigin& security_origin) override;
|
||||
|
||||
private:
|
||||
// content::RenderFrameObserver implementation.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue