Index: tools/chrome_remote_control/chrome_remote_control/google_credentials_backend.py |
diff --git a/tools/chrome_remote_control/chrome_remote_control/google_credentials_backend.py b/tools/chrome_remote_control/chrome_remote_control/google_credentials_backend.py |
deleted file mode 100644 |
index 00b211822aa001bd06f99262fd97c69328bbcefe..0000000000000000000000000000000000000000 |
--- a/tools/chrome_remote_control/chrome_remote_control/google_credentials_backend.py |
+++ /dev/null |
@@ -1,27 +0,0 @@ |
-# Copyright (c) 2012 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. |
- |
-from chrome_remote_control import form_based_credentials_backend |
- |
-class GoogleCredentialsBackend( |
- form_based_credentials_backend.FormBasedCredentialsBackend): |
- @property |
- def credentials_type(self): |
- return 'google' |
- |
- @property |
- def url(self): |
- return 'https://accounts.google.com/' |
- |
- @property |
- def form_id(self): |
- return 'gaia_loginform' |
- |
- @property |
- def login_input_id(self): |
- return 'Email' |
- |
- @property |
- def password_input_id(self): |
- return 'Passwd' |