LEFT | RIGHT |
1 #include "PluginStdAfx.h" | 1 #include "PluginStdAfx.h" |
2 | 2 |
3 #include "PluginSettings.h" | 3 #include "PluginSettings.h" |
4 #include "PluginSystem.h" | 4 #include "PluginSystem.h" |
5 #include "PluginFilter.h" | 5 #include "PluginFilter.h" |
6 #include "PluginClientFactory.h" | 6 #include "PluginClientFactory.h" |
7 #include "PluginDictionary.h" | 7 #include "PluginDictionary.h" |
8 #include "PluginHttpRequest.h" | 8 #include "PluginHttpRequest.h" |
9 #include "PluginMutex.h" | 9 #include "PluginMutex.h" |
10 #include "PluginClass.h" | 10 #include "PluginClass.h" |
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
362 try | 362 try |
363 { | 363 { |
364 CallAdblockPlusEngineProcedure(request); | 364 CallAdblockPlusEngineProcedure(request); |
365 } | 365 } |
366 catch (const std::exception& e) | 366 catch (const std::exception& e) |
367 { | 367 { |
368 DEBUG_GENERAL(e.what()); | 368 DEBUG_GENERAL(e.what()); |
369 } | 369 } |
370 } | 370 } |
371 | 371 |
LEFT | RIGHT |