root/chrome/browser/ui/app_list/chrome_signin_delegate.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


// 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_UI_APP_LIST_CHROME_SIGNIN_DELEGATE_H_
#define CHROME_BROWSER_UI_APP_LIST_CHROME_SIGNIN_DELEGATE_H_

#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "ui/app_list/signin_delegate.h"

class Profile;

class ChromeSigninDelegate : public app_list::SigninDelegate {
 public:
  ChromeSigninDelegate();
  virtual ~ChromeSigninDelegate();
  void SetProfile(Profile* profile);

 private:
  // Overridden from app_list::SigninDelegate:
  virtual bool NeedSignin() OVERRIDE;
  virtual void ShowSignin() OVERRIDE;
  virtual void OpenLearnMore() OVERRIDE;
  virtual void OpenSettings() OVERRIDE;
  virtual base::string16 GetSigninHeading() OVERRIDE;
  virtual base::string16 GetSigninText() OVERRIDE;
  virtual base::string16 GetSigninButtonText() OVERRIDE;
  virtual base::string16 GetLearnMoreLinkText() OVERRIDE;
  virtual base::string16 GetSettingsLinkText() OVERRIDE;

  Profile* profile_;

  DISALLOW_COPY_AND_ASSIGN(ChromeSigninDelegate);
};

#endif  // CHROME_BROWSER_UI_APP_LIST_CHROME_SIGNIN_DELEGATE_H_

/* [<][>][^][v][top][bottom][index][help] */