OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <!-- | |
3 * Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this | |
4 * source code is governed by a BSD-style license that can be found in the | |
5 * LICENSE file. | |
6 --> | |
7 <html> | |
8 <head> | |
9 <title>OAuth Redirect Page</title> | |
10 <style type="text/css"> | |
11 body { | |
12 font: 16px Arial; | |
13 color: #333; | |
14 } | |
15 </style> | |
16 <script type="text/javascript" src="chrome_ex_oauthsimple.js"></script> | |
17 <script type="text/javascript" src="chrome_ex_oauth.js"></script> | |
18 <script type="text/javascript"> | |
19 function onLoad() { | |
20 ChromeExOAuth.initCallbackPage(); | |
21 }; | |
22 </script> | |
23 </head> | |
24 <body onload="onLoad();"> | |
25 Redirecting... | |
26 </body> | |
27 </html> | |
OLD | NEW |