forked from nwjs/nw.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshell_access_token_store.h
More file actions
34 lines (24 loc) · 1.14 KB
/
shell_access_token_store.h
File metadata and controls
34 lines (24 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// 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.
#ifndef CONTENT_SHELL_GEOLOCATION_SHELL_ACCESS_TOKEN_STORE_H_
#define CONTENT_SHELL_GEOLOCATION_SHELL_ACCESS_TOKEN_STORE_H_
#include "content/public/browser/access_token_store.h"
// Dummy access token store used to initialise the network location provider.
class ShellAccessTokenStore : public content::AccessTokenStore {
public:
explicit ShellAccessTokenStore(net::URLRequestContextGetter* request_context);
private:
virtual ~ShellAccessTokenStore();
// AccessTokenStore
virtual void LoadAccessTokens(
const LoadAccessTokensCallbackType& callback) OVERRIDE;
virtual void SaveAccessToken(
const GURL& server_url, const string16& access_token) OVERRIDE;
static void DidLoadAccessTokens(
net::URLRequestContextGetter* request_context,
const LoadAccessTokensCallbackType& callback);
net::URLRequestContextGetter* request_context_;
DISALLOW_COPY_AND_ASSIGN(ShellAccessTokenStore);
};
#endif // CONTENT_SHELL_GEOLOCATION_SHELL_ACCESS_TOKEN_STORE_H_