| Index: ash/common/wm_shell_common.cc
|
| diff --git a/ash/common/wm_shell_common.cc b/ash/common/wm_shell_common.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..59188f868b5e6335b9801f9168382c50b4344e06
|
| --- /dev/null
|
| +++ b/ash/common/wm_shell_common.cc
|
| @@ -0,0 +1,23 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "ash/common/wm_shell_common.h"
|
| +
|
| +#include "ash/common/wm/mru_window_tracker.h"
|
| +
|
| +namespace ash {
|
| +
|
| +WmShellCommon::WmShellCommon() {}
|
| +
|
| +WmShellCommon::~WmShellCommon() {}
|
| +
|
| +void WmShellCommon::CreateMruWindowTracker() {
|
| + mru_window_tracker_.reset(new MruWindowTracker);
|
| +}
|
| +
|
| +void WmShellCommon::DeleteMruWindowTracker() {
|
| + mru_window_tracker_.reset();
|
| +}
|
| +
|
| +} // namespace ash
|
|
|