OLD | NEW |
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 "PluginHttpRequest.h" | |
8 #include "PluginMutex.h" | 7 #include "PluginMutex.h" |
9 #include "PluginClass.h" | 8 #include "PluginClass.h" |
10 | 9 |
11 #include "AdblockPlusClient.h" | 10 #include "AdblockPlusClient.h" |
12 | 11 |
13 #include "../shared/Communication.h" | 12 #include "../shared/Communication.h" |
14 #include "../shared/Utils.h" | 13 #include "../shared/Utils.h" |
15 | 14 |
16 namespace | 15 namespace |
17 { | 16 { |
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 | 377 |
379 try | 378 try |
380 { | 379 { |
381 CallAdblockPlusEngineProcedure(request); | 380 CallAdblockPlusEngineProcedure(request); |
382 } | 381 } |
383 catch (const std::exception& e) | 382 catch (const std::exception& e) |
384 { | 383 { |
385 DEBUG_GENERAL(e.what()); | 384 DEBUG_GENERAL(e.what()); |
386 } | 385 } |
387 } | 386 } |
OLD | NEW |