summaryrefslogtreecommitdiffstats
path: root/content/shell/geolocation
diff options
context:
space:
mode:
authormvanouwerkerk@chromium.org <mvanouwerkerk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-02 21:15:32 +0000
committermvanouwerkerk@chromium.org <mvanouwerkerk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-02 21:15:32 +0000
commit5f85e5401a227622d2d6e14b6431e0edfb9333a7 (patch)
treef477294d6fbeadca2a3c172c7f6985d67bfe87eb /content/shell/geolocation
parent2ff01c2b9c09445e90d16423875f3a3e98d5359b (diff)
downloadchromium_src-5f85e5401a227622d2d6e14b6431e0edfb9333a7.zip
chromium_src-5f85e5401a227622d2d6e14b6431e0edfb9333a7.tar.gz
chromium_src-5f85e5401a227622d2d6e14b6431e0edfb9333a7.tar.bz2
Store context in scoped_refptr between tasks.
BUG=344654 Review URL: https://codereview.chromium.org/265053002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@267918 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/shell/geolocation')
-rw-r--r--content/shell/geolocation/shell_access_token_store.cc3
-rw-r--r--content/shell/geolocation/shell_access_token_store.h4
2 files changed, 5 insertions, 2 deletions
diff --git a/content/shell/geolocation/shell_access_token_store.cc b/content/shell/geolocation/shell_access_token_store.cc
index cec481d..bdcf699 100644
--- a/content/shell/geolocation/shell_access_token_store.cc
+++ b/content/shell/geolocation/shell_access_token_store.cc
@@ -45,7 +45,8 @@ void ShellAccessTokenStore::RespondOnOriginatingThread(
// we provide a dummy access_token set to avoid hitting the server.
AccessTokenSet access_token_set;
access_token_set[GURL()] = base::ASCIIToUTF16("chromium_content_shell");
- callback.Run(access_token_set, system_request_context_);
+ callback.Run(access_token_set, system_request_context_.get());
+ system_request_context_ = NULL;
}
void ShellAccessTokenStore::SaveAccessToken(
diff --git a/content/shell/geolocation/shell_access_token_store.h b/content/shell/geolocation/shell_access_token_store.h
index 0345b8c..e97ce36 100644
--- a/content/shell/geolocation/shell_access_token_store.h
+++ b/content/shell/geolocation/shell_access_token_store.h
@@ -5,7 +5,9 @@
#ifndef CONTENT_SHELL_GEOLOCATION_SHELL_ACCESS_TOKEN_STORE_H_
#define CONTENT_SHELL_GEOLOCATION_SHELL_ACCESS_TOKEN_STORE_H_
+#include "base/memory/ref_counted.h"
#include "content/public/browser/access_token_store.h"
+#include "net/url_request/url_request_context_getter.h"
namespace content {
class ShellBrowserContext;
@@ -31,7 +33,7 @@ class ShellAccessTokenStore : public content::AccessTokenStore {
const GURL& server_url, const base::string16& access_token) OVERRIDE;
content::ShellBrowserContext* shell_browser_context_;
- net::URLRequestContextGetter* system_request_context_;
+ scoped_refptr<net::URLRequestContextGetter> system_request_context_;
DISALLOW_COPY_AND_ASSIGN(ShellAccessTokenStore);
};