summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions
diff options
context:
space:
mode:
authorkathyw@chromium.org <kathyw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-06 19:43:17 +0000
committerkathyw@chromium.org <kathyw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-06 19:43:17 +0000
commit72ef470047f1c45022aaf37da9534c72839d3378 (patch)
tree61893b547aa49284dccc66e8d66a782f36a4f026 /chrome/common/extensions
parentc5a83a32f5621918a4bb78b5b4101a350d92189d (diff)
downloadchromium_src-72ef470047f1c45022aaf37da9534c72839d3378.zip
chromium_src-72ef470047f1c45022aaf37da9534c72839d3378.tar.gz
chromium_src-72ef470047f1c45022aaf37da9534c72839d3378.tar.bz2
Fix a bad URL in sample code.
TBR=ericbidelman BUG=40063 TEST=none Review URL: http://codereview.chromium.org/1539025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43745 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions')
-rwxr-xr-xchrome/common/extensions/docs/static/tut_oauth.html2
-rw-r--r--chrome/common/extensions/docs/tut_oauth.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/extensions/docs/static/tut_oauth.html b/chrome/common/extensions/docs/static/tut_oauth.html
index 09ee5ea..023d839 100755
--- a/chrome/common/extensions/docs/static/tut_oauth.html
+++ b/chrome/common/extensions/docs/static/tut_oauth.html
@@ -78,7 +78,7 @@ var oauth = ChromeExOAuth.initBackgroundPage({
var oauth = ChromeExOAuth.initBackgroundPage({
'request_url': 'https://www.google.com/accounts/OAuthGetRequestToken',
'authorize_url': 'https://www.google.com/accounts/OAuthAuthorizeToken',
- 'access_url': 'https://www.google.com/accounts/OAuthAccessToken',
+ 'access_url': 'https://www.google.com/accounts/OAuthGetAccessToken',
'consumer_key': 'anonymous',
'consumer_secret': 'anonymous',
'scope': 'https://docs.google.com/feeds/',
diff --git a/chrome/common/extensions/docs/tut_oauth.html b/chrome/common/extensions/docs/tut_oauth.html
index b6146ac..53e0c12 100644
--- a/chrome/common/extensions/docs/tut_oauth.html
+++ b/chrome/common/extensions/docs/tut_oauth.html
@@ -353,7 +353,7 @@ Luckily, Google and a few other companies have been working on an <a href="http:
<pre>var oauth = ChromeExOAuth.initBackgroundPage({
'request_url': 'https://www.google.com/accounts/OAuthGetRequestToken',
'authorize_url': 'https://www.google.com/accounts/OAuthAuthorizeToken',
- 'access_url': 'https://www.google.com/accounts/OAuthAccessToken',
+ 'access_url': 'https://www.google.com/accounts/OAuthGetAccessToken',
'consumer_key': 'anonymous',
'consumer_secret': 'anonymous',
'scope': 'https://docs.google.com/feeds/',