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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: remoting/webapp/me2mom/chrome_ex_oauth.html
diff --git a/remoting/webapp/me2mom/chrome_ex_oauth.html b/remoting/webapp/me2mom/chrome_ex_oauth.html
new file mode 100644
index 0000000000000000000000000000000000000000..912f8911b7f850fbe976d346e79b0df11b69eebe
--- /dev/null
+++ b/remoting/webapp/me2mom/chrome_ex_oauth.html
@@ -0,0 +1,27 @@
+<!DOCTYPE html>
+<!--
+ * Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this
+ * source code is governed by a BSD-style license that can be found in the
+ * LICENSE file.
+-->
+<html>
+ <head>
+ <title>OAuth Redirect Page</title>
+ <style type="text/css">
+ body {
+ font: 16px Arial;
+ color: #333;
+ }
+ </style>
+ <script type="text/javascript" src="chrome_ex_oauthsimple.js"></script>
+ <script type="text/javascript" src="chrome_ex_oauth.js"></script>
+ <script type="text/javascript">
+ function onLoad() {
+ ChromeExOAuth.initCallbackPage();
+ };
+ </script>
+ </head>
+ <body onload="onLoad();">
+ Redirecting...
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698