blob: 45c5e9aa52aaf65ccf254a10963ac3ba260055a5 [file] [log] [blame]
// Copyright 2013 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_WEBDATA_COMMON_WEBDATA_CONSTANTS_H_
#define COMPONENTS_WEBDATA_COMMON_WEBDATA_CONSTANTS_H_
#include "base/files/file_path.h"
#include "build/build_config.h"
#include "components/webdata/common/webdata_export.h"
WEBDATA_EXPORT extern const base::FilePath::CharType kWebDataFilename[];
// Note: On desktop, the account-scoped web data store is only stored in memory,
// so doesn't have a file path. So this constant only exists on mobile.
#if defined(OS_ANDROID) || defined(OS_IOS)
WEBDATA_EXPORT extern const base::FilePath::CharType kAccountWebDataFilename[];
#endif // defined(OS_ANDROID) || defined(OS_IOS)
#endif // COMPONENTS_WEBDATA_COMMON_WEBDATA_CONSTANTS_H_