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

Unified Diff: src/plugin/PluginClass.cpp

Issue 5743529531801600: Playing with Default behavior for catch-all blocks
Patch Set: proposed changes Created March 31, 2015, 1:49 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
diff --git a/src/plugin/PluginClass.cpp b/src/plugin/PluginClass.cpp
index 485630c02677360272a831ae1dcdf9d2c20a8c0f..f48f2e9ee53dbe1113402d2edfcfd90ae9d1b5f5 100644
--- a/src/plugin/PluginClass.cpp
+++ b/src/plugin/PluginClass.cpp
@@ -543,6 +543,7 @@ void STDMETHODCALLTYPE CPluginClass::OnBeforeNavigate2(
}
catch (...)
{
+ EntryPointExceptionDefault("CPluginClass::OnBeforeNavigate2");
}
}
@@ -560,6 +561,7 @@ void STDMETHODCALLTYPE CPluginClass::OnDownloadComplete()
}
catch (...)
{
+ EntryPointExceptionDefault("CPluginClass::OnDownloadComplete");
}
}
@@ -581,6 +583,7 @@ void STDMETHODCALLTYPE CPluginClass::OnDocumentComplete(IDispatch* frameBrowserD
}
catch (...)
{
+ EntryPointExceptionDefault("CPluginClass::OnDocumentComplete");
}
}
@@ -611,6 +614,7 @@ void STDMETHODCALLTYPE CPluginClass::OnWindowStateChanged(unsigned long flags, u
}
catch (...)
{
+ EntryPointExceptionDefault("CPluginClass::OnWindowStateChanged");
}
}
@@ -639,6 +643,7 @@ void STDMETHODCALLTYPE CPluginClass::OnCommandStateChange(long /*command*/, VARI
}
catch (...)
{
+ EntryPointExceptionDefault("CPluginClass::OnCommandStateChange");
}
}
@@ -651,6 +656,7 @@ void STDMETHODCALLTYPE CPluginClass::OnOnQuit()
}
catch (...)
{
+ EntryPointExceptionDefault("CPluginClass::OnOnQuit");
}
}
« no previous file with comments | « src/plugin/Exception.h ('k') | src/plugin/PluginDebug.h » ('j') | test/plugin/ExceptionTest.cpp » ('J')

Powered by Google App Engine
This is Rietveld