blob: 0c50069e3bd6555d147cc4fbb1cdf7d3b9a2337d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/webdata/common/webdata_constants.h"
#include "build/build_config.h"
const base::FilePath::CharType kWebDataFilename[] =
FILE_PATH_LITERAL("Web Data");
#if BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_IOS)
const base::FilePath::CharType kAccountWebDataFilename[] =
FILE_PATH_LITERAL("Account Web Data");
#endif // BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_IOS)
|