Home
last modified time | relevance | path

Searched refs:StartupAppLauncher (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/chrome/browser/chromeos/app_mode/
Dstartup_app_launcher.cc59 StartupAppLauncher::StartupAppLauncher(Profile* profile, in StartupAppLauncher() function in chromeos::StartupAppLauncher
61 StartupAppLauncher::Delegate* delegate) in StartupAppLauncher()
71 StartupAppLauncher::~StartupAppLauncher() { in ~StartupAppLauncher()
78 void StartupAppLauncher::Initialize() { in Initialize()
82 void StartupAppLauncher::ContinueWithNetworkReady() { in ContinueWithNetworkReady()
90 void StartupAppLauncher::StartLoadingOAuthFile() { in StartLoadingOAuthFile()
96 base::Bind(&StartupAppLauncher::LoadOAuthFileOnBlockingPool, in StartLoadingOAuthFile()
98 base::Bind(&StartupAppLauncher::OnOAuthFileLoaded, in StartLoadingOAuthFile()
104 void StartupAppLauncher::LoadOAuthFileOnBlockingPool( in LoadOAuthFileOnBlockingPool()
127 void StartupAppLauncher::OnOAuthFileLoaded(KioskOAuthParams* auth_params) { in OnOAuthFileLoaded()
[all …]
Dstartup_app_launcher.h33 class StartupAppLauncher
34 : public base::SupportsWeakPtr<StartupAppLauncher>,
54 StartupAppLauncher(Profile* profile,
58 virtual ~StartupAppLauncher();
110 DISALLOW_COPY_AND_ASSIGN(StartupAppLauncher);
Dapp_launch_utils.cc17 class AppLaunchManager : public StartupAppLauncher::Delegate {
20 : startup_app_launcher_(new StartupAppLauncher(profile, app_id, this)) { in AppLaunchManager()
52 scoped_ptr<StartupAppLauncher> startup_app_launcher_;
/external/chromium_org/chrome/browser/chromeos/login/
Dapp_launch_controller.h38 public StartupAppLauncher::Delegate,
117 scoped_ptr<StartupAppLauncher> startup_app_launcher_;
Dapp_launch_controller.cc210 startup_app_launcher_.reset(new StartupAppLauncher(profile_, app_id_, this)); in OnProfileLoaded()