Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(43)

Unified Diff: components/gcm_driver/gcm_client_impl.cc

Issue 330733002: Move IdentityProvider usage from GCMDriverDesktop to GCMProfileService (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Patch Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/gcm_driver/gcm_client_impl.cc
diff --git a/components/gcm_driver/gcm_client_impl.cc b/components/gcm_driver/gcm_client_impl.cc
index a60df6915aa6b0a0284de79c377f55420c2bcb75..b223aae6a5d38ca6436e5caaf05dfd207396919b 100644
--- a/components/gcm_driver/gcm_client_impl.cc
+++ b/components/gcm_driver/gcm_client_impl.cc
@@ -265,7 +265,6 @@ GCMClientImpl::~GCMClientImpl() {
void GCMClientImpl::Initialize(
const ChromeBuildInfo& chrome_build_info,
const base::FilePath& path,
- const std::vector<std::string>& account_ids,
const scoped_refptr<base::SequencedTaskRunner>& blocking_task_runner,
const scoped_refptr<net::URLRequestContextGetter>&
url_request_context_getter,
@@ -283,7 +282,6 @@ void GCMClientImpl::Initialize(
network_session_ = new net::HttpNetworkSession(*network_session_params);
chrome_build_info_ = chrome_build_info;
- account_ids_ = account_ids;
gcm_store_.reset(
new GCMStoreImpl(path, blocking_task_runner, encryptor.Pass()));
@@ -400,7 +398,6 @@ void GCMClientImpl::StartCheckin() {
CheckinRequest::RequestInfo request_info(device_checkin_info_.android_id,
device_checkin_info_.secret,
gservices_settings_.digest(),
- account_ids_,
chrome_build_proto);
checkin_request_.reset(
new CheckinRequest(gservices_settings_.GetCheckinURL(),

Powered by Google App Engine
This is Rietveld 408576698