summaryrefslogtreecommitdiff
path: root/chromium/components/webdata/common/webdata_constants.h
blob: 45c5e9aa52aaf65ccf254a10963ac3ba260055a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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_