This source file includes following definitions.
- DoShow
#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 chromeos {
namespace first_run {
AppListStep::AppListStep(ash::FirstRunHelper* shell_helper,
FirstRunActor* actor)
: Step(kAppListStep, shell_helper, actor) {
}
void AppListStep::DoShow() {
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);
}
}
}