| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| 1 #include <AdblockPlus.h> | 1 #include <AdblockPlus.h> |
| 2 #include <functional> | 2 #include <functional> |
| 3 #include <vector> | 3 #include <vector> |
| 4 #include <Windows.h> | 4 #include <Windows.h> |
| 5 | 5 |
| 6 #include "../shared/AutoHandle.h" | 6 #include "../shared/AutoHandle.h" |
| 7 #include "../shared/Communication.h" | 7 #include "../shared/Communication.h" |
| 8 #include "../shared/Dictionary.h" | 8 #include "../shared/Dictionary.h" |
| 9 #include "../shared/Utils.h" | 9 #include "../shared/Utils.h" |
| 10 #include "../shared/Version.h" | 10 #include "../shared/Version.h" |
| (...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 316 activeConnections = 0; | 316 activeConnections = 0; |
| 317 exit(0); | 317 exit(0); |
| 318 } | 318 } |
| 319 } | 319 } |
| 320 | 320 |
| 321 return 0; | 321 return 0; |
| 322 } | 322 } |
| 323 | 323 |
| 324 void OnUpdateAvailable(AdblockPlus::JsValueList& params) | 324 void OnUpdateAvailable(AdblockPlus::JsValueList& params) |
| 325 { | 325 { |
| 326 updateAvailable = true; | |
| 327 if (params.size() < 1) | 326 if (params.size() < 1) |
| 328 { | 327 { |
| 329 Debug("updateAvailable event missing URL"); | 328 Debug("updateAvailable event missing URL"); |
| 330 return; | 329 return; |
| 331 } | 330 } |
| 331 updateAvailable = true; | |
|
Oleksandr
2013/08/09 08:17:39
Probably the most discussed line of code
Felix Dahlke
2013/08/09 09:15:29
Quite definitely :D
| |
| 332 | 332 |
| 333 updater->SetUrl(params[0]->AsString()); | 333 updater->SetUrl(params[0]->AsString()); |
| 334 updater->Update(); | 334 updater->Update(); |
| 335 } | 335 } |
| 336 } | 336 } |
| 337 | 337 |
| 338 std::auto_ptr<AdblockPlus::FilterEngine> CreateFilterEngine(const std::wstring& locale) | 338 std::auto_ptr<AdblockPlus::FilterEngine> CreateFilterEngine(const std::wstring& locale) |
| 339 { | 339 { |
| 340 AdblockPlus::AppInfo appInfo; | 340 AdblockPlus::AppInfo appInfo; |
| 341 appInfo.version = ToUtf8String(IEPLUGIN_VERSION); | 341 appInfo.version = ToUtf8String(IEPLUGIN_VERSION); |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 401 } | 401 } |
| 402 catch (std::runtime_error e) | 402 catch (std::runtime_error e) |
| 403 { | 403 { |
| 404 DebugException(e); | 404 DebugException(e); |
| 405 return 1; | 405 return 1; |
| 406 } | 406 } |
| 407 } | 407 } |
| 408 | 408 |
| 409 return 0; | 409 return 0; |
| 410 } | 410 } |
| OLD | NEW |