Updating trunk VERSION from 2139.0 to 2140.0
[chromium-blink-merge.git] / apps / app_shim / test / app_shim_host_manager_test_api_mac.cc
blob6fbdd8c95a299089cccd74c25880b0c5e5821c9c
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "apps/app_shim/test/app_shim_host_manager_test_api_mac.h"
7 #include "apps/app_shim/app_shim_host_manager_mac.h"
8 #include "base/files/file_path.h"
10 namespace test {
12 AppShimHostManagerTestApi::AppShimHostManagerTestApi(
13 AppShimHostManager* host_manager)
14 : host_manager_(host_manager) {
15 DCHECK(host_manager_);
18 apps::UnixDomainSocketAcceptor* AppShimHostManagerTestApi::acceptor() {
19 return host_manager_->acceptor_.get();
22 const base::FilePath& AppShimHostManagerTestApi::directory_in_tmp() {
23 return host_manager_->directory_in_tmp_;
26 } // namespace test