blob: daab5661fd0295960b20f88c0c237fce1be4727d [file] [log] [blame]
// Copyright 2019 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/home_screen/home_screen_controller.h"
#include "ash/home_screen/home_launcher_gesture_handler.h"
namespace ash {
HomeScreenController::HomeScreenController()
: home_launcher_gesture_handler_(
std::make_unique<HomeLauncherGestureHandler>()) {}
HomeScreenController::~HomeScreenController() = default;
void HomeScreenController::SetDelegate(HomeScreenDelegate* delegate) {
delegate_ = delegate;
}
} // namespace ash