53 lines
1.6 KiB
C++
53 lines
1.6 KiB
C++
// Copyright (c) 2014 GitHub, Inc. All rights reserved.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "atom/browser/atom_access_token_store.h"
|
|
|
|
#include <utility>
|
|
|
|
#include "atom/browser/atom_browser_context.h"
|
|
|
|
#ifndef GOOGLEAPIS_API_KEY
|
|
#define GOOGLEAPIS_API_KEY "AIzaSyAQfxPJiounkhOjODEO5ZieffeBv6yft2Q"
|
|
#endif
|
|
|
|
namespace atom {
|
|
|
|
namespace {
|
|
|
|
// Notice that we just combined the api key with the url together here, because
|
|
// if we use the standard {url: key} format Chromium would override our key with
|
|
// the predefined one in common.gypi of libchromiumcontent, which is empty.
|
|
const char* kGeolocationProviderUrl =
|
|
"https://www.googleapis.com/geolocation/v1/geolocate?key="
|
|
GOOGLEAPIS_API_KEY;
|
|
|
|
} // namespace
|
|
|
|
AtomAccessTokenStore::AtomAccessTokenStore() {
|
|
}
|
|
|
|
AtomAccessTokenStore::~AtomAccessTokenStore() {
|
|
}
|
|
|
|
void AtomAccessTokenStore::LoadAccessTokens(
|
|
const LoadAccessTokensCallbackType& callback) {
|
|
AccessTokenSet access_token_set;
|
|
|
|
// Equivelent to access_token_set[kGeolocationProviderUrl].
|
|
// Somehow base::string16 is causing compilation errors when used in a pair
|
|
// of std::map on Linux, this can work around it.
|
|
std::pair<GURL, base::string16> token_pair;
|
|
token_pair.first = GURL(kGeolocationProviderUrl);
|
|
access_token_set.insert(token_pair);
|
|
|
|
callback.Run(access_token_set,
|
|
AtomBrowserContext::Get()->url_request_context_getter());
|
|
}
|
|
|
|
void AtomAccessTokenStore::SaveAccessToken(const GURL& server_url,
|
|
const base::string16& access_token) {
|
|
}
|
|
|
|
} // namespace atom
|