Updating trunk VERSION from 2139.0 to 2140.0
[chromium-blink-merge.git] / athena / wm / test / window_manager_impl_test_api.cc
blob51296c4b704221a668897b0e73b5a83f216954a8
1 // Copyright 2014 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 "athena/wm/test/window_manager_impl_test_api.h"
7 #include "athena/wm/window_manager_impl.h"
9 namespace athena {
10 namespace test {
12 WindowManagerImplTestApi::WindowManagerImplTestApi()
13 : wm_(static_cast<WindowManagerImpl*>(WindowManager::GetInstance())) {
16 WindowManagerImplTestApi::~WindowManagerImplTestApi() {
19 athena::WindowListProvider* WindowManagerImplTestApi::GetWindowListProvider() {
20 return wm_->window_list_provider_.get();
23 athena::SplitViewController*
24 WindowManagerImplTestApi::GetSplitViewController() {
25 return wm_->split_view_controller_.get();
28 } // namespace test
29 } // namespace athena