/external/chromium/chrome/browser/sync/ |
sync_setup_flow.cc | 168 ActivateState(current_state_); 174 << current_state_ << " to " << advance_state; 189 if (current_state_ == SyncSetupWizard::DONE || 190 current_state_ == SyncSetupWizard::DONE_FIRST_TIME) { 195 switch (current_state_) { 262 if (current_state_ == SyncSetupWizard::ENTER_PASSPHRASE) 287 current_state_(start_state), 296 // Returns true if the flow should advance to |state| based on |current_state_|. 300 return current_state_ == SyncSetupWizard::FATAL_ERROR || 301 current_state_ == SyncSetupWizard::GAIA_LOGIN | [all...] |
sync_setup_wizard_unittest.cc | 227 EXPECT_EQ(SyncSetupWizard::GAIA_LOGIN, test_window_->flow()->current_state_); 235 EXPECT_EQ(SyncSetupWizard::GAIA_LOGIN, test_window_->flow()->current_state_); 249 EXPECT_EQ(SyncSetupWizard::GAIA_LOGIN, test_window_->flow()->current_state_); 288 test_window_->flow()->current_state_); 296 EXPECT_EQ(SyncSetupWizard::DONE, test_window_->flow()->current_state_); 343 test_window_->flow()->current_state_); 411 EXPECT_EQ(SyncSetupWizard::GAIA_LOGIN, test_window_->flow()->current_state_); 413 EXPECT_EQ(SyncSetupWizard::GAIA_LOGIN, test_window_->flow()->current_state_); 417 test_window_->flow()->current_state_); 421 test_window_->flow()->current_state_); [all...] |
sync_setup_flow.h | 124 // based on |current_state_|, or false if that would be nonsense or is 133 SyncSetupWizard::State current_state_; member in class:SyncSetupFlow
|
/external/chromium/chrome/browser/chromeos/login/ |
parallel_authenticator.cc | 74 current_state_.reset( 81 mounter_ = CryptohomeOp::CreateMountAttempt(current_state_.get(), 84 current_online_ = new OnlineAttempt(current_state_.get(), this); 100 current_state_.reset( 108 key_checker_ = CryptohomeOp::CreateCheckKeyAttempt(current_state_.get(), 118 current_state_.reset(new AuthAttemptState("", "", "", "", "", false)); 120 CryptohomeOp::CreateMountGuestAttempt(current_state_.get(), this); 140 consumer_->OnLoginSuccess(current_state_->username, 141 current_state_->password, 178 if (!localaccount_.empty() && localaccount_ == current_state_->username) [all...] |
parallel_authenticator.h | 195 current_state_.reset(new_state); 198 // Resets |current_state_| and then posts a task to the UI thread to 246 scoped_ptr<AuthAttemptState> current_state_; member in class:chromeos::ParallelAuthenticator
|
/external/chromium/net/proxy/ |
proxy_service.cc | 387 current_state_(STATE_NONE) , 515 if (current_state_ == STATE_NONE) 531 if (current_state_ == STATE_READY) { 554 DCHECK_NE(STATE_NONE, current_state_); 556 if (current_state_ != STATE_READY) 598 current_state_ = STATE_READY; 621 DCHECK_EQ(STATE_NONE, current_state_); 632 current_state_ = STATE_WAITING_FOR_PROXY_CONFIG; 645 DCHECK_EQ(STATE_WAITING_FOR_INIT_PROXY_RESOLVER, current_state_); 763 State previous_state = current_state_; [all...] |
proxy_service.h | 242 // of |current_state_|. If |reset_fetched_config| is true then 331 State current_state_; member in class:net::ProxyService
|