2016-09-21 16:17:30 +00:00
|
|
|
// Copyright (c) 2016 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef ATOM_RENDERER_CONTENT_SETTINGS_OBSERVER_H_
|
|
|
|
#define ATOM_RENDERER_CONTENT_SETTINGS_OBSERVER_H_
|
|
|
|
|
|
|
|
#include "base/compiler_specific.h"
|
|
|
|
#include "content/public/renderer/render_frame_observer.h"
|
2018-07-20 16:08:18 +00:00
|
|
|
#include "third_party/blink/public/platform/web_content_settings_client.h"
|
2016-09-21 16:17:30 +00:00
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
class ContentSettingsObserver : public content::RenderFrameObserver,
|
|
|
|
public blink::WebContentSettingsClient {
|
|
|
|
public:
|
|
|
|
explicit ContentSettingsObserver(content::RenderFrame* render_frame);
|
|
|
|
~ContentSettingsObserver() override;
|
|
|
|
|
|
|
|
// blink::WebContentSettingsClient implementation.
|
2019-02-21 07:59:38 +00:00
|
|
|
bool AllowDatabase() override;
|
2017-06-16 20:42:33 +00:00
|
|
|
bool AllowStorage(bool local) override;
|
2019-01-10 00:00:34 +00:00
|
|
|
bool AllowIndexedDB(const blink::WebSecurityOrigin& security_origin) override;
|
2016-09-21 16:17:30 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
// content::RenderFrameObserver implementation.
|
|
|
|
void OnDestruct() override;
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(ContentSettingsObserver);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
|
|
|
#endif // ATOM_RENDERER_CONTENT_SETTINGS_OBSERVER_H_
|