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(), |