| 1109 | |
| 1110 | bool SupportsMultiplePrograms(const rdcstr &URL) override { return false; } |
| 1111 | bool IsSupported(const rdcstr &URL) override |
| 1112 | { |
| 1113 | bool ret = false; |
| 1114 | |
| 1115 | { |
| 1116 | SCOPED_LOCK(lock); |
| 1117 | ret = Android::IsSupported(GetDeviceID(URL)); |
| 1118 | } |
| 1119 | |
| 1120 | return ret; |
| 1121 | } |
| 1122 | |
| 1123 | ResultDetails StartRemoteServer(const rdcstr &URL) override |
| 1124 | { |
no test coverage detected