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

Unified Diff: src/plugin/PluginClass.cpp

Issue 29334397: Issue #2230, #3391 - Load filters on "download begin" event
Patch Set: Created Jan. 22, 2016, 6:02 p.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
@@ -518,6 +518,19 @@
}
// Entry point
+void STDMETHODCALLTYPE CPluginClass::OnDownloadBegin()
+{
+ try
+ {
+ DEBUG_NAVI("OnDownloadBegin");
+ m_tab->OnDownloadBegin();
+ }
+ catch (...)
+ {
+ }
+}
+
+// Entry point
void STDMETHODCALLTYPE CPluginClass::OnDownloadComplete()
{
try

Powered by Google App Engine
This is Rietveld