HomeSort by relevance Sort by last modified time
    Searched full:credentials_type (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/tools/telemetry/telemetry/core/
browser_credentials.py 28 self._backends[backend.credentials_type] = backend
31 assert backend.credentials_type not in self._backends
32 self._backends[backend.credentials_type] = backend
34 def IsLoggedIn(self, credentials_type):
35 if credentials_type not in self._backends:
36 raise Exception('Unrecognized credentials type: %s', credentials_type)
37 if credentials_type not in self._credentials:
39 return self._backends[credentials_type].IsLoggedIn()
41 def CanLogin(self, credentials_type):
42 if credentials_type not in self._backends
    [all...]
browser_credentials_unittest.py 20 def __init__(self, credentials_type):
23 self.credentials_type = credentials_type
  /external/chromium_org/tools/telemetry/telemetry/core/backends/
google_credentials_backend.py 14 def credentials_type(self): member in class:GoogleCredentialsBackend
facebook_credentials_backend.py 15 def credentials_type(self): member in class:FacebookCredentialsBackend
form_based_credentials_backend.py 37 def credentials_type(self): member in class:FormBasedCredentialsBackend
76 self.credentials_type)
79 logging.debug('Logging into %s account...' % self.credentials_type)
  /external/chromium_org/tools/telemetry/docs/
telemetry.core.browser_credentials.html 51 <dl><dt><a name="BrowserCredentials-Add"><strong>Add</strong></a>(self, credentials_type, data)</dt></dl>
55 <dl><dt><a name="BrowserCredentials-CanLogin"><strong>CanLogin</strong></a>(self, credentials_type)</dt></dl>
57 <dl><dt><a name="BrowserCredentials-IsLoggedIn"><strong>IsLoggedIn</strong></a>(self, credentials_type)</dt></dl>
59 <dl><dt><a name="BrowserCredentials-LoginNeeded"><strong>LoginNeeded</strong></a>(self, tab, credentials_type)</dt></dl>
61 <dl><dt><a name="BrowserCredentials-LoginNoLongerNeeded"><strong>LoginNoLongerNeeded</strong></a>(self, tab, credentials_type)</dt></dl>
telemetry.core.chrome.form_based_credentials_backend.html 68 <dl><dt><strong>credentials_type</strong></dt>
telemetry.core.chrome.facebook_credentials_backend.html 56 <dl><dt><strong>credentials_type</strong></dt>
telemetry.core.chrome.google_credentials_backend.html 56 <dl><dt><strong>credentials_type</strong></dt>
  /external/chromium_org/tools/telemetry/telemetry/page/
page_runner_unittest.py 34 def credentials_type(self): # pylint: disable=R0201 member in class:StubCredentialsBackend

Completed in 453 milliseconds