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

Unified Diff: src/plugin/PluginClass.cpp

Issue 5024350814076928: Issue 1103 - Migrate Simple Adblock users
Patch Set: Make it less Simple Adblock specific, and add the FRP changes Created April 16, 2015, 9:52 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
Index: src/plugin/PluginClass.cpp
===================================================================
--- a/src/plugin/PluginClass.cpp
+++ b/src/plugin/PluginClass.cpp
@@ -854,9 +854,13 @@
{
return false;
}
-
s_criticalSectionLocal.Lock();
- int versionCompRes = CPluginClient::GetInstance()->CompareVersions(CPluginClient::GetInstance()->GetPref(L"currentVersion", L"0.0"), L"1.2");
+ std::wstring curVer = CPluginClient::GetInstance()->GetPref(std::wstring(L"currentVersion"), std::wstring(L"0.0"));
sergei 2015/04/22 10:37:09 How does "0.0" affect `versionCompRes`? I'm not th
Oleksandr 2015/04/24 11:50:32 I don't think we should default to current version
+ if (curVer.find(L".") == std::wstring::npos)
sergei 2015/04/22 10:37:09 I would live a comment here about "simpleadblock"
+ {
+ CPluginClient::GetInstance()->SetPref(L"convertedFrom", curVer);
+ }
+ int versionCompRes = CPluginClient::GetInstance()->CompareVersions(curVer, L"1.2");
bool isFirstRun = CPluginClient::GetInstance()->IsFirstRun();
CPluginClient::GetInstance()->SetPref(L"currentVersion", std::wstring(IEPLUGIN_VERSION));
@@ -866,7 +870,10 @@
{
if (!isFirstRun)
{
- CPluginClient::GetInstance()->SetPref(L"displayUpdatePage", true);
+ if (!CPluginClient::GetInstance()->GetPref(curVer, false))
+ {
+ CPluginClient::GetInstance()->SetPref(L"displayUpdatePage", true);
+ }
}
// IE6 can't be accessed from another thread, execute in current thread

Powered by Google App Engine
This is Rietveld