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"
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() {