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: content/shell/shell_access_token_store.cc

Issue 10669009: Add ShellAccessTokenStore to content_shell (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 6 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
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "content/shell/shell_access_token_store.h"
6 #include "chrome/browser/browser_process.h"
jochen (gone - plz use gerrit) 2012/06/25 15:36:44 not needed?
John Knottenbelt 2012/06/26 07:46:15 Done.
7
8 ShellAccessTokenStore::ShellAccessTokenStore(
9 net::URLRequestContextGetter* system_request_context)
10 : system_request_context_(system_request_context) {
11 }
12
13 void ShellAccessTokenStore::LoadAccessTokens(
14 const LoadAccessTokensCallbackType& callback) {
15 callback.Run(AccessTokenSet(), system_request_context_);
bulach 2012/06/25 15:28:39 hmm... does the caller expect the callback to be e
John Knottenbelt 2012/06/26 07:46:15 Good point, chrome access token store will yield t
16 }
17
18 void ShellAccessTokenStore::SaveAccessToken(
19 const GURL& server_url, const string16& access_token) {
20 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698