blob: c2b217759650a1d98668300af5d33737af51df0f [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.
#ifndef CHROME_BROWSER_CHROMEOS_FIRST_RUN_STEPS_GREETING_STEP_H_
#define CHROME_BROWSER_CHROMEOS_FIRST_RUN_STEPS_GREETING_STEP_H_
#include "base/compiler_specific.h"
#include "chrome/browser/chromeos/first_run/step.h"
namespace chromeos {
namespace first_run {
class GreetingStep : public Step {
public:
GreetingStep(ash::FirstRunHelper* shell_helper, FirstRunActor* actor);
// Overriden from step.
virtual void Show() OVERRIDE;
virtual void OnBeforeHide() OVERRIDE;
};
} // namespace first_run
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_FIRST_RUN_STEPS_GREETING_STEP_H_