| LEFT | RIGHT |
| 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 30 matching lines...) Expand all Loading... |
| 41 #define PLUGIN_ERROR_MUTEX 13 | 41 #define PLUGIN_ERROR_MUTEX 13 |
| 42 #define PLUGIN_ERROR_MUTEX_CREATE 1 | 42 #define PLUGIN_ERROR_MUTEX_CREATE 1 |
| 43 #define PLUGIN_ERROR_MUTEX_RELEASE 2 | 43 #define PLUGIN_ERROR_MUTEX_RELEASE 2 |
| 44 #define PLUGIN_ERROR_MUTEX_WAIT 3 | 44 #define PLUGIN_ERROR_MUTEX_WAIT 3 |
| 45 #define PLUGIN_ERROR_MUTEX_WAIT_TIMEOUT 4 | 45 #define PLUGIN_ERROR_MUTEX_WAIT_TIMEOUT 4 |
| 46 #define PLUGIN_ERROR_MUTEX_DEBUG_FILE 50 | 46 #define PLUGIN_ERROR_MUTEX_DEBUG_FILE 50 |
| 47 #define PLUGIN_ERROR_MUTEX_SETTINGS_FILE_WHITELIST 90 | 47 #define PLUGIN_ERROR_MUTEX_SETTINGS_FILE_WHITELIST 90 |
| 48 | 48 |
| 49 #define PLUGIN_ERROR_SET_SITE 16 | 49 #define PLUGIN_ERROR_SET_SITE 16 |
| 50 #define PLUGIN_ERROR_SET_SITE_ADVICE 1 | 50 #define PLUGIN_ERROR_SET_SITE_ADVICE 1 |
| 51 #define PLUGIN_ERROR_SET_SITE_UNADVICE 2 | 51 #define PLUGIN_ERROR_SET_SITE_UNADVISE 2 |
| 52 #define PLUGIN_ERROR_SET_SITE_QUERY_BROWSER 3 | 52 #define PLUGIN_ERROR_SET_SITE_QUERY_BROWSER 3 |
| 53 #define PLUGIN_ERROR_SET_SITE_QUERY_SERVICE_PROVIDER 4 | 53 #define PLUGIN_ERROR_SET_SITE_QUERY_SERVICE_PROVIDER 4 |
| 54 #define PLUGIN_ERROR_SET_SITE_COINIT 5 | 54 #define PLUGIN_ERROR_SET_SITE_COINIT 5 |
| 55 #define PLUGIN_ERROR_SET_SITE_FIND_CONNECTION_POINT 6 | 55 #define PLUGIN_ERROR_SET_SITE_FIND_CONNECTION_POINT 6 |
| 56 | 56 |
| 57 #define PLUGIN_ERROR_UI 17 | 57 #define PLUGIN_ERROR_UI 17 |
| 58 #define PLUGIN_ERROR_UI_GET_UXTHEME 1 | 58 #define PLUGIN_ERROR_UI_GET_UXTHEME 1 |
| 59 #define PLUGIN_ERROR_UI_GET_UXTHEME_OPEN 2 | 59 #define PLUGIN_ERROR_UI_GET_UXTHEME_OPEN 2 |
| 60 #define PLUGIN_ERROR_UI_GET_UXTHEME_DRAW_BACKGROUND 3 | 60 #define PLUGIN_ERROR_UI_GET_UXTHEME_DRAW_BACKGROUND 3 |
| 61 #define PLUGIN_ERROR_UI_GET_UXTHEME_CLOSE 4 | 61 #define PLUGIN_ERROR_UI_GET_UXTHEME_CLOSE 4 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 static void DebugResultDomain(const std::wstring& domain); | 94 static void DebugResultDomain(const std::wstring& domain); |
| 95 static void DebugResultBlocking(const std::wstring& type, const std::wstring&
src, const std::wstring& domain); | 95 static void DebugResultBlocking(const std::wstring& type, const std::wstring&
src, const std::wstring& domain); |
| 96 static void DebugResultHiding(const std::wstring& tag, const std::wstring& id,
const std::wstring& filter); | 96 static void DebugResultHiding(const std::wstring& tag, const std::wstring& id,
const std::wstring& filter); |
| 97 #endif | 97 #endif |
| 98 | 98 |
| 99 #if (defined ENABLE_DEBUG_RESULT_IGNORED) | 99 #if (defined ENABLE_DEBUG_RESULT_IGNORED) |
| 100 static void DebugResultIgnoring(const std::wstring& type, const std::wstring&
src, const std::wstring& domain); | 100 static void DebugResultIgnoring(const std::wstring& type, const std::wstring&
src, const std::wstring& domain); |
| 101 #endif | 101 #endif |
| 102 }; | 102 }; |
| 103 | 103 |
| 104 void ExceptionDefault(const std::string& name); | 104 void ExceptionDefault(const std::string& name);» |
| 105 void EntryPointExceptionDefault(const std::string& name); | 105 void EntryPointExceptionDefault(const std::string& name); |
| 106 | 106 |
| 107 #endif // _PLUGIN_DEBUG_H_ | 107 #endif // _PLUGIN_DEBUG_H_ |
| LEFT | RIGHT |