| Index: components/sync/syncable/test_user_share.h
|
| diff --git a/components/sync/syncable/test_user_share.h b/components/sync/syncable/test_user_share.h
|
| index c3a8aa93e867e0821009031f67c102782d77b0eb..78b140557985ac2db8d5b09e98aca9d00e51e538 100644
|
| --- a/components/sync/syncable/test_user_share.h
|
| +++ b/components/sync/syncable/test_user_share.h
|
| @@ -1,7 +1,27 @@
|
| // Copyright (c) 2012 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.
|
| -//
|
| +
|
| +#ifndef COMPONENTS_SYNC_SYNCABLE_TEST_USER_SHARE_H_
|
| +#define COMPONENTS_SYNC_SYNCABLE_TEST_USER_SHARE_H_
|
| +
|
| +#include <stddef.h>
|
| +
|
| +#include <memory>
|
| +
|
| +#include "base/macros.h"
|
| +#include "components/sync/base/model_type.h"
|
| +#include "components/sync/syncable/user_share.h"
|
| +
|
| +namespace syncer {
|
| +
|
| +class SyncEncryptionHandler;
|
| +class TestDirectorySetterUpper;
|
| +
|
| +namespace syncable {
|
| +class TestTransactionObserver;
|
| +}
|
| +
|
| // A handy class that takes care of setting up and destroying a
|
| // UserShare instance for unit tests that require one.
|
| //
|
| @@ -26,27 +46,6 @@
|
| // ...
|
| // }
|
| //
|
| -
|
| -#ifndef COMPONENTS_SYNC_SYNCABLE_TEST_USER_SHARE_H_
|
| -#define COMPONENTS_SYNC_SYNCABLE_TEST_USER_SHARE_H_
|
| -
|
| -#include <stddef.h>
|
| -
|
| -#include <memory>
|
| -
|
| -#include "base/macros.h"
|
| -#include "components/sync/base/model_type.h"
|
| -#include "components/sync/syncable/user_share.h"
|
| -
|
| -namespace syncer {
|
| -
|
| -class SyncEncryptionHandler;
|
| -class TestDirectorySetterUpper;
|
| -
|
| -namespace syncable {
|
| -class TestTransactionObserver;
|
| -}
|
| -
|
| class TestUserShare {
|
| public:
|
| TestUserShare();
|
|
|