| Index: components/history/content/browser/history_database_helper.h
|
| diff --git a/components/history/content/browser/history_database_helper.h b/components/history/content/browser/history_database_helper.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..4a97514271506860045756147dd46d1934268b6a
|
| --- /dev/null
|
| +++ b/components/history/content/browser/history_database_helper.h
|
| @@ -0,0 +1,22 @@
|
| +// Copyright 2015 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_HISTORY_CONTENT_BROWSER_HISTORY_DATABASE_HELPER_H_
|
| +#define COMPONENTS_HISTORY_CONTENT_BROWSER_HISTORY_DATABASE_HELPER_H_
|
| +
|
| +namespace base {
|
| +class FilePath;
|
| +}
|
| +
|
| +namespace history {
|
| +
|
| +struct HistoryDatabaseParams;
|
| +
|
| +// Returns a HistoryDatabaseParams for |history_dir|.
|
| +HistoryDatabaseParams HistoryDatabaseParamsForPath(
|
| + const base::FilePath& history_dir);
|
| +
|
| +} // namespace history
|
| +
|
| +#endif // COMPONENTS_HISTORY_CONTENT_BROWSER_HISTORY_DATABASE_HELPER_H_
|
|
|