| Index: chrome/browser/sync/internal_api/syncapi_functions.h
|
| diff --git a/chrome/browser/sync/internal_api/syncapi_functions.h b/chrome/browser/sync/internal_api/syncapi_functions.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..08aefdc19f9f1911725aa0b166a36a638f716f43
|
| --- /dev/null
|
| +++ b/chrome/browser/sync/internal_api/syncapi_functions.h
|
| @@ -0,0 +1,29 @@
|
| +// Copyright (c) 2011 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 CHROME_BROWSER_SYNC_INTERNAL_API_SYNCAPI_FUNCTIONS_H_
|
| +#define CHROME_BROWSER_SYNC_INTERNAL_API_SYNCAPI_FUNCTIONS_H_
|
| +#pragma once
|
| +
|
| +#include <string>
|
| +
|
| +#include "chrome/browser/sync/syncable/model_type.h"
|
| +#include "chrome/browser/sync/internal_api/sync_manager.h"
|
| +
|
| +namespace sync_api {
|
| +
|
| +class BaseTransaction;
|
| +class UserShare;
|
| +
|
| +syncable::ModelTypeSet GetEncryptedTypes(
|
| + const sync_api::BaseTransaction* trans);
|
| +
|
| +// Returns the string representation of a PassphraseRequiredReason value.
|
| +std::string PassphraseRequiredReasonToString(PassphraseRequiredReason reason);
|
| +
|
| +bool InitialSyncEndedForTypes(syncable::ModelTypeSet types, UserShare* share);
|
| +
|
| +} // namespace sync_api
|
| +
|
| +#endif // CHROME_BROWSER_SYNC_INTERNAL_API_SYNCAPI_FUNCTIONS_H_
|
|
|