1<!DOCTYPE html>
2<!--
3 * Copyright (c) 2010 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 * Author: Eric Bidelman <ericbidelman@chromium.org>
8-->
9<html>
10  <head>
11    <meta charset="UTF-8">
12    <title>OAuth Redirect Page</title>
13    <style type="text/css">
14      body {
15        font: 16px Arial;
16        color: #333;
17      }
18    </style>
19    <script type="text/javascript" src="chrome_ex_oauthsimple.js"></script>
20    <script type="text/javascript" src="chrome_ex_oauth.js"></script>
21    <script type="text/javascript">
22      function onLoad() {
23        ChromeExOAuth.initCallbackPage();
24      };
25    </script>
26  </head>
27  <body onload="onLoad();">
28    Redirecting...
29  </body>
30</html>
31