| 1031 | } |
| 1032 | |
| 1033 | TCHAR* PluginList::getValidateUrl() { |
| 1034 | if (g_options.useDevPluginList) { |
| 1035 | return DEV_VALIDATE_BASE_URL; |
| 1036 | } |
| 1037 | |
| 1038 | if (g_options.forceHttp || g_winVer < WV_VISTA) { |
| 1039 | return VALIDATE_BASE_HTTP_URL; |
| 1040 | } |
| 1041 | |
| 1042 | return VALIDATE_BASE_URL; |
| 1043 | } |
| 1044 | |
| 1045 | void PluginList::reparseFile(const tstring& pluginsListFilename) |
| 1046 | { |
nothing calls this directly
no outgoing calls
no test coverage detected