Searched defs:Login (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/chrome/test/functional/
H A Dchromeos_retail_mode.py29 def Login(self): member in class:ChromeosRetailMode
30 """Login to retail mode by simulating a mouse click."""
44 self.Login()
H A Dchromeos_ephemeral.py32 pods. This is required by the Login browser automation call.
85 def Login(self, user_index): member in class:ChromeosEphemeral
89 policy_base.PolicyTestBase.Login(self,
101 self.Login(user_index=0)
116 self.Login(user_index=0)
134 self.Login(user_index=0)
150 self.Login(user_index=0)
154 self.Login(user_index=1)
163 self.Login(user_index=0)
/external/chromium_org/jingle/notifier/communicator/
H A Dlogin.h41 class Login : public net::NetworkChangeNotifier::IPAddressObserver, class in namespace:notifier
68 Login(Delegate* delegate,
75 virtual ~Login();
124 base::OneShotTimer<Login> reconnect_timer_;
126 DISALLOW_COPY_AND_ASSIGN(Login);
H A Dlogin.cc30 Login::Delegate::~Delegate() {}
32 Login::Login(Delegate* delegate, function in class:notifier::Login
51 Login::~Login() {
56 void Login::StartConnection() {
61 void Login::UpdateXmppSettings(const buzz::XmppClientSettings& user_settings) {
71 void Login::OnConnect(base::WeakPtr<buzz::XmppTaskParentInterface> base_task) {
77 void Login::OnRedirect(const ServerInformation& redirect_server) {
85 void Login
[all...]
/external/chromium/third_party/libjingle/source/talk/examples/login/
H A Dxmppthread.cc58 void XmppThread::Login(const buzz::XmppClientSettings& xcs) { function in class:XmppThread
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dxmppthread.cc60 void XmppThread::Login(const buzz::XmppClientSettings& xcs) { function in class:buzz::XmppThread
/external/chromium/chrome/browser/chromeos/login/
H A Ddom_login_display.cc61 // TODO(rharrison): Push the change to DOM Login screen
66 // TODO(rharrison): Push the change to DOM Login screen
89 void DOMLoginDisplay::Login(const std::string& username, function in class:chromeos::DOMLoginDisplay
92 delegate_->Login(username, password);
H A Dlogin_performer.cc62 UMA_HISTOGRAM_ENUMERATION("Login.FailureReason", failure.reason(),
115 // 0 - Login success offline and online. It's a new user. or it's an
117 // 1 - Login success offline only. It's an existing user login.
118 UMA_HISTOGRAM_ENUMERATION("Login.SuccessReason", pending_requests, 2);
236 void LoginPerformer::Login(const std::string& username, function in class:chromeos::LoginPerformer
247 method_factory_.NewRunnableMethod(&LoginPerformer::Login,
H A Dviews_login_display.cc252 void ViewsLoginDisplay::Login(UserController* source, function in class:chromeos::ViewsLoginDisplay
254 delegate()->Login(source->user().email(), UTF16ToUTF8(password));
H A Dexisting_user_controller.cc156 void ExistingUserController::Login(const std::string& username, function in class:chromeos::ExistingUserController
182 login_performer_->Login(username, password);
H A Dnew_user_view.cc448 void NewUserView::Login() { function in class:chromeos::NewUserView
473 Login();
531 Login();
/external/chromium/chrome/browser/chromeos/options/
H A Dvpn_config_view.cc182 bool VPNConfigView::Login() { function in class:chromeos::VPNConfigView
H A Dwifi_config_view.cc442 bool WifiConfigView::Login() { function in class:chromeos::WifiConfigView
/external/chromium_org/chrome/browser/chromeos/login/
H A Dwebui_screen_locker.cc213 void WebUIScreenLocker::Login(const UserContext& user_context) { function in class:chromeos::WebUIScreenLocker
H A Dwebui_login_display.cc244 void WebUILoginDisplay::Login(const UserContext& user_context) { function in class:chromeos::WebUILoginDisplay
247 delegate_->Login(user_context);
H A Dexisting_user_controller.cc327 content::RecordAction(content::UserMetricsAction("Login.CreateAccount"));
348 UMA_HISTOGRAM_MEDIUM_TIMES("Login.PromptToCompleteLoginTime", delta);
398 void ExistingUserController::Login(const UserContext& user_context) { function in class:chromeos::ExistingUserController
446 LOG(ERROR) << "Login attempt of locally managed user detected.";
788 // Login performer will be gone so cache this value to use
/external/chromium_org/chrome/browser/chromeos/options/
H A Dwimax_config_view.cc141 bool WimaxConfigView::Login() { function in class:chromeos::WimaxConfigView
H A Dvpn_config_view.cc357 bool VPNConfigView::Login() { function in class:chromeos::VPNConfigView
H A Dwifi_config_view.cc633 bool WifiConfigView::Login() { function in class:chromeos::WifiConfigView
/external/chromium/chrome/browser/automation/
H A Dtesting_automation_provider_chromeos.cc163 void TestingAutomationProvider::Login(DictionaryValue* args, function in class:TestingAutomationProvider
177 controller->Login(username, password);
/external/chromium_org/third_party/libjingle/source/talk/examples/plus/
H A Dlibjingleplus.cc221 void Login(const std::string &jid, const std::string &password, function in class:LibjinglePlusWorker
702 void LibjinglePlus::Login(const std::string &jid, function in class:LibjinglePlus
706 worker_->Login(jid, password, machine_address, is_test, cookie_auth);
/external/chromium_org/chrome/browser/captive_portal/
H A Dcaptive_portal_browsertest.cc904 void Login(Browser* browser, int num_loading_tabs, int num_timed_out_tabs);
1347 void CaptivePortalBrowserTest::Login(Browser* browser, function in class:captive_portal::CaptivePortalBrowserTest
1524 Login(browser, 1, 0);
1634 IN_PROC_BROWSER_TEST_F(CaptivePortalBrowserTest, Login) {
1639 Login(browser(), 1, 0);
1667 Login(incognito_browser, 1, 0);
1684 Login(browser(), 0, 1);
1691 Login(browser(), 0, 1);
1714 // Simulate logging in. Can't use Login() because the interstitial tab looks
1771 Login(browse
[all...]
/external/chromium_org/chrome/test/pyautolib/
H A Dpyauto.py220 # Login with default creds.
224 self.Login(creds[0], creds[1])
244 initiate a user session by calling Login() or LoginAsGuest(). Cryptohome
4306 """Login to chromeos as a guest user.
4324 def Login(self, username, password, timeout=120 * 1000): member in class:PyUITest
4325 """Login to chromeos.
4357 raise JSONInterfaceError('Login denied by auth server.')
4359 raise JSONInterfaceError('Login failed. Perhaps Chrome crashed, '

Completed in 229 milliseconds