summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--remoting/host/gaia_oauth_client.cc3
-rw-r--r--remoting/host/url_fetcher.cc1
2 files changed, 3 insertions, 1 deletions
diff --git a/remoting/host/gaia_oauth_client.cc b/remoting/host/gaia_oauth_client.cc
index aef0ad2..db7d449 100644
--- a/remoting/host/gaia_oauth_client.cc
+++ b/remoting/host/gaia_oauth_client.cc
@@ -48,7 +48,8 @@ class GaiaOAuthClient::Core
public:
Core(const OAuthProviderInfo& info,
net::URLRequestContextGetter* request_context_getter)
- : request_context_getter_(request_context_getter),
+ : provider_info_(info),
+ request_context_getter_(request_context_getter),
delegate_(NULL) {
}
diff --git a/remoting/host/url_fetcher.cc b/remoting/host/url_fetcher.cc
index 9f5084b..606d1f9 100644
--- a/remoting/host/url_fetcher.cc
+++ b/remoting/host/url_fetcher.cc
@@ -75,6 +75,7 @@ UrlFetcher::Core::Core(const GURL& url, Method method)
method_(method),
delegate_message_loop_(base::MessageLoopProxy::current()),
buffer_(new net::IOBuffer(kBufferSize)) {
+ CHECK(url_.is_valid());
}
UrlFetcher::Core::~Core() {