blob: 2ed5d304095f8de654336fac48fb16540e0d2462 [file] [log] [blame]
// Copyright 2013 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 "chrome/browser/chromeos/first_run/steps/app_list_step.h"
#include "ash/first_run/first_run_helper.h"
#include "chrome/browser/chromeos/first_run/step_names.h"
#include "chrome/browser/ui/webui/chromeos/first_run/first_run_actor.h"
#include "ui/gfx/rect.h"
namespace {
const int kCircleRadius = 30;
} // namespace
namespace chromeos {
namespace first_run {
AppListStep::AppListStep(ash::FirstRunHelper* shell_helper,
FirstRunActor* actor)
: Step(kAppListStep, shell_helper, actor) {
}
void AppListStep::Show() {
gfx::Rect button_bounds = shell_helper()->GetAppListButtonBounds();
gfx::Point center = button_bounds.CenterPoint();
actor()->AddRoundHole(center.x(), center.y(), kCircleRadius);
actor()->ShowStepPointingTo(name(), center.x(), center.y(), kCircleRadius);
}
} // namespace first_run
} // namespace chromeos