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

Delta Between Two Patch Sets: src/plugin/PluginUserSettings.cpp

Issue 5024350814076928: Issue 1103 - Migrate Simple Adblock users
Left Patch Set: Rebase and cleanup Created July 13, 2015, 3:44 a.m.
Right Patch Set: Use registry instead of prefs for storing the Simple Adblock mark Created Aug. 7, 2015, 10:34 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
LEFTRIGHT
1 /* 1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>, 2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-2015 Eyeo GmbH 3 * Copyright (C) 2006-2015 Eyeo GmbH
4 * 4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as 6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Adblock Plus is distributed in the hope that it will be useful, 9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 break; 445 break;
446 case dispatchID_GetConversion: 446 case dispatchID_GetConversion:
447 { 447 {
448 if (pDispparams->cArgs != 0) 448 if (pDispparams->cArgs != 0)
449 { 449 {
450 return DISP_E_BADPARAMCOUNT; 450 return DISP_E_BADPARAMCOUNT;
451 } 451 }
452 if (pVarResult) 452 if (pVarResult)
453 { 453 {
454 pVarResult->vt = VT_BSTR; 454 pVarResult->vt = VT_BSTR;
455 pVarResult->bstrVal = CComBSTR(CPluginClient::GetInstance()->GetPref(L "convertedFrom", L"").c_str()); 455 pVarResult->bstrVal = CComBSTR(CPluginClient::GetInstance()->GetConver tedFrom().c_str());
456 } 456 }
457 } 457 }
458 break; 458 break;
459 default: 459 default:
460 return DISP_E_MEMBERNOTFOUND; 460 return DISP_E_MEMBERNOTFOUND;
461 break; 461 break;
462 } 462 }
463 } 463 }
464 catch (...) 464 catch (...)
465 { 465 {
466 return E_FAIL; 466 return E_FAIL;
467 } 467 }
468 return S_OK; 468 return S_OK;
469 } 469 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld