Left: | ||
Right: |
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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
54 PRIVATE_HANDLER_THREAD.setDaemon(true); | 54 PRIVATE_HANDLER_THREAD.setDaemon(true); |
55 PRIVATE_HANDLER_THREAD.start(); | 55 PRIVATE_HANDLER_THREAD.start(); |
56 PRIVATE_HANDLER = new Handler(PRIVATE_HANDLER_THREAD.getLooper()); | 56 PRIVATE_HANDLER = new Handler(PRIVATE_HANDLER_THREAD.getLooper()); |
57 | 57 |
58 GLOBAL_HANDLER_THREAD = new HandlerThread("abp-global-handler"); | 58 GLOBAL_HANDLER_THREAD = new HandlerThread("abp-global-handler"); |
59 GLOBAL_HANDLER_THREAD.setDaemon(true); | 59 GLOBAL_HANDLER_THREAD.setDaemon(true); |
60 GLOBAL_HANDLER_THREAD.start(); | 60 GLOBAL_HANDLER_THREAD.start(); |
61 GLOBAL_HANDLER = new Handler(GLOBAL_HANDLER_THREAD.getLooper()); | 61 GLOBAL_HANDLER = new Handler(GLOBAL_HANDLER_THREAD.getLooper()); |
62 } | 62 } |
63 | 63 |
64 public static void handlerPost(Runnable runnable) | 64 public static void postToHandler(Runnable runnable) |
Felix Dahlke
2015/07/26 17:06:22
Nit: I always thought starting functions with side
René Jeschke
2015/07/28 10:55:26
Done.
| |
65 { | 65 { |
66 GLOBAL_HANDLER.post(runnable); | 66 GLOBAL_HANDLER.post(runnable); |
67 } | 67 } |
68 | 68 |
69 public static void handlerPostDelayed(Runnable runnable, long delayMillis) | 69 public static void postToHandlerDelayed(Runnable runnable, long delayMillis) |
70 { | 70 { |
71 GLOBAL_HANDLER.postDelayed(runnable, delayMillis); | 71 GLOBAL_HANDLER.postDelayed(runnable, delayMillis); |
72 } | 72 } |
73 | 73 |
74 public static boolean getBooleanFromJsObject(final NativeJSObject obj, final S tring name, | 74 public static boolean getBooleanFromJsObject(final NativeJSObject obj, final S tring name, |
75 final boolean defaultValue) | 75 final boolean defaultValue) |
76 { | 76 { |
77 try | 77 try |
78 { | 78 { |
79 return obj.getBoolean(name); | 79 return obj.getBoolean(name); |
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
357 this.invokeSuccessCallback(jsObject); | 357 this.invokeSuccessCallback(jsObject); |
358 } | 358 } |
359 else | 359 else |
360 { | 360 { |
361 this.invokeFailureCallback(jsObject); | 361 this.invokeFailureCallback(jsObject); |
362 } | 362 } |
363 } | 363 } |
364 } | 364 } |
365 } | 365 } |
366 } | 366 } |
LEFT | RIGHT |