Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: Shared/PluginFilter.cpp

Issue 8978054: Removal of shareware parts (Closed)
Patch Set: Created Dec. 5, 2012, 7:59 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Shared/PluginConfiguration.cpp ('k') | Shared/PluginSettings.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Shared/PluginFilter.cpp
===================================================================
--- a/Shared/PluginFilter.cpp
+++ b/Shared/PluginFilter.cpp
@@ -1788,19 +1788,6 @@
CPluginSettings* settings = CPluginSettings::GetInstance();
-
- if (!settings->GetBool(SETTING_PLUGIN_REGISTRATION, false))
- {
- //is the limit exceeded?
- if ((settings->GetValue(SETTING_PLUGIN_ADBLOCKCOUNT, 0) >= settings->GetValue(SETTING_PLUGIN_ADBLOCKLIMIT, 0))
- && (settings->GetValue(SETTING_PLUGIN_ADBLOCKLIMIT, 0) > 0))
- {
- return false;
- }
- }
-
-
-
CString type;
if (addDebug)
{
@@ -1839,20 +1826,6 @@
DEBUG_FILTER("Filter::ShouldBlock " + type + " NO src:" + src)
}
-
- if (blockFilter)
- {
- //is plugin registered
- if (!settings->GetBool(SETTING_PLUGIN_REGISTRATION, false))
- {
- //is the limit exceeded? When the upgrade dialog is displayed adblockcount is set to 1000000
- if ((settings->GetValue(SETTING_PLUGIN_ADBLOCKCOUNT, 0) >= settings->GetValue(SETTING_PLUGIN_ADBLOCKLIMIT, 0))
- && (settings->GetValue(SETTING_PLUGIN_ADBLOCKLIMIT, 0) > 0))
- {
- return false;
- }
- }
- }
return blockFilter ? true : false;
}
« no previous file with comments | « Shared/PluginConfiguration.cpp ('k') | Shared/PluginSettings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld