Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 } | |
| OLD | NEW |