OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:content_blocked_
(Results
1 - 8
of
8
) sorted by null
/external/chromium/chrome/browser/tab_contents/
tab_specific_content_settings_unittest.cc
16
: settings_changed_(false),
content_blocked_
(false) {}
19
void Reset() { settings_changed_ =
content_blocked_
= false; }
23
bool ContentBlocked() { return
content_blocked_
; }
28
content_blocked_
= content_was_blocked;
33
bool
content_blocked_
;
member in class:__anon4962::TestContentSettingsDelegate
tab_specific_content_settings.cc
37
return
content_blocked_
[content_type];
89
if (!
content_blocked_
[type]) {
90
content_blocked_
[type] = true;
230
for (size_t i = 0; i < arraysize(
content_blocked_
); ++i) {
234
content_blocked_
[i] = false;
246
content_blocked_
[CONTENT_SETTINGS_TYPE_COOKIES] = false;
254
content_blocked_
[CONTENT_SETTINGS_TYPE_POPUPS] = blocked;
tab_specific_content_settings.h
46
// Resets the |
content_blocked_
| and |content_accessed_| arrays, except for
56
// Changes the |
content_blocked_
| entry for popups.
169
bool
content_blocked_
[CONTENT_SETTINGS_NUM_TYPES];
member in class:TabSpecificContentSettings
/external/chromium_org/chrome/browser/content_settings/
tab_specific_content_settings.cc
215
return
content_blocked_
[content_type];
276
content_blocked_
[type] = false;
281
if (!
content_blocked_
[type]) {
282
content_blocked_
[type] = true;
303
if (
content_blocked_
[type]) {
304
content_blocked_
[type] = false;
537
for (size_t i = 0; i < arraysize(
content_blocked_
); ++i) {
540
content_blocked_
[i] = false;
554
content_blocked_
[CONTENT_SETTINGS_TYPE_COOKIES] = false;
564
content_blocked_
[CONTENT_SETTINGS_TYPE_AUTOMATIC_DOWNLOADS] = blocked
[
all
...]
tab_specific_content_settings.h
153
// Resets the |
content_blocked_
| and |content_allowed_| arrays, except for
166
// Changes the |
content_blocked_
| entry for popups.
169
// Changes the |
content_blocked_
| entry for downloads.
361
bool
content_blocked_
[CONTENT_SETTINGS_NUM_TYPES];
member in class:TabSpecificContentSettings
/external/chromium_org/webkit/browser/appcache/
appcache_host_unittest.cc
42
content_blocked_
(false) {
81
content_blocked_
= true;
89
bool
content_blocked_
;
member in class:appcache::AppCacheHostTest::MockFrontend
470
mock_frontend_.
content_blocked_
= false;
487
EXPECT_FALSE(mock_frontend_.
content_blocked_
);
508
mock_frontend_.
content_blocked_
= false;
525
EXPECT_TRUE(mock_frontend_.
content_blocked_
);
/external/chromium_org/chrome/renderer/
content_settings_observer.h
113
// Resets the |
content_blocked_
| array.
142
bool
content_blocked_
[CONTENT_SETTINGS_NUM_TYPES];
member in class:ContentSettingsObserver
content_settings_observer.cc
179
if (!
content_blocked_
[settings_type]) {
180
content_blocked_
[settings_type] = true;
599
for (size_t i = 0; i < arraysize(
content_blocked_
); ++i)
600
content_blocked_
[i] = false;
Completed in 169 milliseconds