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

Side by Side Diff: src/plugin/Plugin.cpp

Issue 5994126579335168: Noissue - Remove a dead inheritance and some dead code (Closed)
Patch Set: Remove comment Created Feb. 27, 2015, 4:47 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/plugin/Config.h ('k') | src/plugin/PluginClientBase.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 else 125 else
126 { 126 {
127 DEBUG_GENERAL( 127 DEBUG_GENERAL(
128 L"======================================================================== ========\nUPDATER " + 128 L"======================================================================== ========\nUPDATER " +
129 CString(IEPLUGIN_VERSION) + 129 CString(IEPLUGIN_VERSION) +
130 L"\n====================================================================== ==========") 130 L"\n====================================================================== ==========")
131 } 131 }
132 132
133 // Post async plugin error 133 // Post async plugin error
134 CPluginError pluginError; 134 CPluginError pluginError;
135 while (CPluginClientBase::PopFirstPluginError(pluginError)) 135 while (LogQueue::PopFirstPluginError(pluginError))
136 { 136 {
137 CPluginClientBase::LogPluginError(pluginError.GetErrorCode(), pluginError.Ge tErrorId(), pluginError.GetErrorSubid(), pluginError.GetErrorDescription(), true , pluginError.GetProcessId(), pluginError.GetThreadId()); 137 LogQueue::LogPluginError(pluginError.GetErrorCode(), pluginError.GetErrorId( ), pluginError.GetErrorSubid(), pluginError.GetErrorDescription(), true, pluginE rror.GetProcessId(), pluginError.GetThreadId());
138 } 138 }
139 } 139 }
140 140
141 // Called from installer 141 // Called from installer
142 EXTERN_C void STDAPICALLTYPE OnInstall(MSIHANDLE hInstall, MSIHANDLE tmp) 142 EXTERN_C void STDAPICALLTYPE OnInstall(MSIHANDLE hInstall, MSIHANDLE tmp)
143 { 143 {
144 InitPlugin(true); 144 InitPlugin(true);
145 } 145 }
146 146
147 // Called from updater 147 // Called from updater
148 EXTERN_C void STDAPICALLTYPE OnUpdate(void) 148 EXTERN_C void STDAPICALLTYPE OnUpdate(void)
149 { 149 {
150 InitPlugin(false); 150 InitPlugin(false);
151 } 151 }
OLDNEW
« no previous file with comments | « src/plugin/Config.h ('k') | src/plugin/PluginClientBase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld