| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2011 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <html> | 8 <html> |
| 9 <head> | 9 <head> |
| 10 <script src="oauth2.js"></script> | 10 <script src="oauth2.js"></script> |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 }); | 26 }); |
| 27 } else { | 27 } else { |
| 28 window.location.replace(chrome.extension.getURL('choice.html')); | 28 window.location.replace(chrome.extension.getURL('choice.html')); |
| 29 } | 29 } |
| 30 } | 30 } |
| 31 | 31 |
| 32 retrieveRefreshToken(window.location.search.substring(1)); | 32 retrieveRefreshToken(window.location.search.substring(1)); |
| 33 </script> | 33 </script> |
| 34 </body> | 34 </body> |
| 35 </html> | 35 </html> |
| OLD | NEW |