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

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

Issue 7046012: Basic OAuth2 support using the native app flow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: last one 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
« no previous file with comments | « remoting/webapp/me2mom/choice.html ('k') | remoting/webapp/me2mom/chrome_ex_oauth.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « remoting/webapp/me2mom/choice.html ('k') | remoting/webapp/me2mom/chrome_ex_oauth.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698