Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(118)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
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: Address Jamie's comments.
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.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
remoting/tools/keygen.py
remoting/webapp/me2mom/background.html
remoting/webapp/me2mom/background.js
remoting/webapp/me2mom/choice.html
remoting/webapp/me2mom/chrome_ex_oauth.html
remoting/webapp/me2mom/chrome_ex_oauth.js
remoting/webapp/me2mom/chrome_ex_oauthsimple.js
remoting/webapp/me2mom/main.css
remoting/webapp/me2mom/manifest.json
remoting/webapp/me2mom/remoting.js
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') |
remoting/webapp/me2mom/remoting.js »
('J')
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
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
« no previous file with comments
|
« remoting/webapp/me2mom/choice.html
('k') |
remoting/webapp/me2mom/chrome_ex_oauth.js »
('j') |
remoting/webapp/me2mom/remoting.js »
('J')
Issue 7046012: Basic OAuth2 support using the native app flow. (Closed)
Created 9 years, 7 months ago by awong
Modified 9 years, 7 months ago
Reviewers: Jamie
Base URL: svn://svn.chromium.org/chrome/trunk/src
Comments: 13
This is Rietveld
408576698