Chromium Code Reviews| Index: content/shell/shell_access_token_store.cc |
| diff --git a/content/shell/shell_access_token_store.cc b/content/shell/shell_access_token_store.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c77afc574024ce2671a0a946f419eba0eea5e3e6 |
| --- /dev/null |
| +++ b/content/shell/shell_access_token_store.cc |
| @@ -0,0 +1,20 @@ |
| +// Copyright (c) 2012 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. |
| + |
| +#include "content/shell/shell_access_token_store.h" |
| +#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.
|
| + |
| +ShellAccessTokenStore::ShellAccessTokenStore( |
| + net::URLRequestContextGetter* system_request_context) |
| + : system_request_context_(system_request_context) { |
| +} |
| + |
| +void ShellAccessTokenStore::LoadAccessTokens( |
| + const LoadAccessTokensCallbackType& callback) { |
| + 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
|
| +} |
| + |
| +void ShellAccessTokenStore::SaveAccessToken( |
| + const GURL& server_url, const string16& access_token) { |
| +} |