1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_RENDERER_CONTENT_SETTINGS_OBSERVER_H_
#define CHROME_RENDERER_CONTENT_SETTINGS_OBSERVER_H_
#pragma once
#include <map>
#include "chrome/common/content_settings.h"
#include "content/renderer/render_view_observer.h"
#include "content/renderer/render_view_observer_tracker.h"
class GURL;
namespace WebKit {
class WebSecurityOrigin;
}
// Handles blocking content per content settings for each RenderView.
class ContentSettingsObserver
: public RenderViewObserver,
public RenderViewObserverTracker<ContentSettingsObserver> {
public:
explicit ContentSettingsObserver(RenderView* render_view);
virtual ~ContentSettingsObserver();
// Sets the content settings that back allowScripts(), allowImages(), and
// allowPlugins().
void SetContentSettings(const ContentSettings& settings);
// Sets the default content settings that back allowScripts(),
// allowImages(), and allowPlugins().
static void SetDefaultContentSettings(const ContentSettings& settings);
// Returns the setting for the given type.
ContentSetting GetContentSetting(ContentSettingsType type);
// Sends an IPC notification that the specified content type was blocked.
// If the content type requires it, |resource_identifier| names the specific
// resource that was blocked (the plugin path in the case of plugins),
// otherwise it's the empty string.
void DidBlockContentType(ContentSettingsType settings_type,
const std::string& resource_identifier);
// These correspond to WebKit::WebPermissionClient methods.
bool AllowDatabase(WebKit::WebFrame* frame,
const WebKit::WebString& name,
const WebKit::WebString& display_name,
unsigned long estimated_size);
bool AllowFileSystem(WebKit::WebFrame* frame);
bool AllowImages(WebKit::WebFrame* frame, bool enabled_per_settings);
bool AllowIndexedDB(WebKit::WebFrame* frame,
const WebKit::WebString& name,
const WebKit::WebSecurityOrigin& origin);
bool AllowPlugins(WebKit::WebFrame* frame, bool enabled_per_settings);
bool AllowScript(WebKit::WebFrame* frame, bool enabled_per_settings);
bool AllowStorage(WebKit::WebFrame* frame, bool local);
void DidNotAllowPlugins(WebKit::WebFrame* frame);
void DidNotAllowScript(WebKit::WebFrame* frame);
private:
// RenderViewObserver implementation.
virtual bool OnMessageReceived(const IPC::Message& message);
virtual void DidCommitProvisionalLoad(WebKit::WebFrame* frame,
bool is_new_navigation);
// Message handlers.
void OnSetContentSettingsForLoadingURL(
const GURL& url,
const ContentSettings& content_settings);
void OnLoadBlockedPlugins();
// Helper method that returns if the user wants to block content of type
// |content_type|.
bool AllowContentType(ContentSettingsType settings_type);
// Resets the |content_blocked_| array.
void ClearBlockedContentSettings();
typedef std::map<GURL, ContentSettings> HostContentSettings;
HostContentSettings host_content_settings_;
// Stores our most up-to-date view of the default content settings.
static ContentSettings default_settings_;
// Stores if loading of images, scripts, and plugins is allowed.
ContentSettings current_content_settings_;
// Stores if images, scripts, and plugins have actually been blocked.
bool content_blocked_[CONTENT_SETTINGS_NUM_TYPES];
// Caches the result of AllowStorage.
typedef std::pair<GURL, bool> StoragePermissionsKey;
std::map<StoragePermissionsKey, bool> cached_storage_permissions_;
bool plugins_temporarily_allowed_;
DISALLOW_COPY_AND_ASSIGN(ContentSettingsObserver);
};
#endif // CHROME_RENDERER_CONTENT_SETTINGS_OBSERVER_H_
|