diff options
author | blundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-31 16:07:13 +0000 |
---|---|---|
committer | blundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-31 16:07:13 +0000 |
commit | a0e77d34b23643174e25fb509a516efad179d57f (patch) | |
tree | 117ff89c38a021b453ad86b71e55b53652167d34 /components/sync_driver/sync_frontend.cc | |
parent | 3a37a8029b0ffb8a101cdf1a202db83edd245e27 (diff) | |
download | chromium_src-a0e77d34b23643174e25fb509a516efad179d57f.zip chromium_src-a0e77d34b23643174e25fb509a516efad179d57f.tar.gz chromium_src-a0e77d34b23643174e25fb509a516efad179d57f.tar.bz2 |
Create sync_driver component.
This CL creates the sync_driver component and moves files with no problematic
dependencies from //chrome/browser/sync and //chrome/browser/sync/glue into it.
This is a first step toward componentization of //chrome/browser/sync.
BUG=339727
Review URL: https://codereview.chromium.org/133343007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248192 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/sync_driver/sync_frontend.cc')
-rw-r--r-- | components/sync_driver/sync_frontend.cc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/components/sync_driver/sync_frontend.cc b/components/sync_driver/sync_frontend.cc new file mode 100644 index 0000000..33a76c1 --- /dev/null +++ b/components/sync_driver/sync_frontend.cc @@ -0,0 +1,13 @@ +// Copyright 2014 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "components/sync_driver/sync_frontend.h" + +namespace browser_sync { + +SyncFrontend::SyncFrontend() {} + +SyncFrontend::~SyncFrontend() {} + +} // namespace browser_sync |