Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(115)

Side by Side Diff: remoting/webapp/me2mom/chrome_ex_oauth.html

Issue 7016001: Simple OAuth1 implementation based on http://code.google.com/chrome/extensions/tut_oauth.html. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698