Fix a couple problems related to getting and deleting Instance ID
[chromium-blink-merge.git] / components / gcm_driver / gcm_client_factory.cc
blobe09f8b4c154e547689329ec16b85567c1ccdabe7
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "components/gcm_driver/gcm_client_factory.h"
7 #include "components/gcm_driver/gcm_client_impl.h"
9 namespace gcm {
11 scoped_ptr<GCMClient> GCMClientFactory::BuildInstance() {
12 return scoped_ptr<GCMClient>(new GCMClientImpl(
13 make_scoped_ptr<GCMInternalsBuilder>(new GCMInternalsBuilder())));
16 GCMClientFactory::GCMClientFactory() {
19 GCMClientFactory::~GCMClientFactory() {
22 } // namespace gcm