Componentize GCM Part 1: create GCM component and move some files over
[chromium-blink-merge.git] / components / gcm_driver / gcm_client_factory.cc
blob64d7d5c30eb9294c8c59a2f4e4bf62a2331f2925
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 "google_apis/gcm/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