File tree 3 files changed +8
-2
lines changed
components/application_manager
include/application_manager/app_launch
3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -222,7 +222,7 @@ if (HMIADAPTER STREQUAL "messagebroker")
222
222
include (ExternalProject)
223
223
ExternalProject_Add(
224
224
Boost
225
- URL https://dl.bintray.com/boostorg /release/1.66.0/source /boost_1_66_0.tar.gz
225
+ URL https://boostorg.jfrog.io/artifactory/main /release/1.66.0/source /boost_1_66_0.tar.gz
226
226
DOWNLOAD_DIR ${BOOST_LIB_SOURCE_DIRECTORY}
227
227
SOURCE_DIR ${BOOST_LIB_SOURCE_DIRECTORY}
228
228
CONFIGURE_COMMAND ./bootstrap.sh --with-libraries=system --prefix =${3RD_PARTY_INSTALL_PREFIX}
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ class DeviceAppsLauncher {
25
25
DeviceAppsLauncher (application_manager::ApplicationManager& app_mngr,
26
26
app_launch::AppsLauncher& apps_launcher,
27
27
const AppLaunchSettings& settings);
28
+ ~DeviceAppsLauncher ();
28
29
29
30
bool LaunchAppsOnDevice (
30
31
const std::string& device_mac,
@@ -36,7 +37,7 @@ class DeviceAppsLauncher {
36
37
private:
37
38
application_manager::ApplicationManager& app_mngr_;
38
39
const AppLaunchSettings& settings_;
39
- std::auto_ptr< DeviceAppsLauncherImpl> impl_;
40
+ DeviceAppsLauncherImpl* impl_;
40
41
friend class DeviceAppsLauncherImpl ;
41
42
DISALLOW_COPY_AND_ASSIGN (DeviceAppsLauncher);
42
43
};
Original file line number Diff line number Diff line change @@ -196,6 +196,11 @@ DeviceAppsLauncher::DeviceAppsLauncher(
196
196
, settings_(settings)
197
197
, impl_(new DeviceAppsLauncherImpl(*this , apps_launcher)) {}
198
198
199
+ DeviceAppsLauncher::~DeviceAppsLauncher () {
200
+ delete impl_;
201
+ impl_ = nullptr ;
202
+ }
203
+
199
204
bool DeviceAppsLauncher::StopLaunchingAppsOnDevice (
200
205
const std::string& device_mac) {
201
206
return impl_->StopLaunchingAppsOnDevice (device_mac);
You can’t perform that action at this time.
0 commit comments