Index: components/history/core/browser/history_constants.cc |
diff --git a/components/history/core/browser/history_constants.cc b/components/history/core/browser/history_constants.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b37169f444057139901974fdef0f20b080198cf1 |
--- /dev/null |
+++ b/components/history/core/browser/history_constants.cc |
@@ -0,0 +1,23 @@ |
+// Copyright 2014 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. |
+ |
+#include "components/history/core/browser/history_constants.h" |
+ |
+#include "base/files/file_path.h" |
+ |
+#define FPL FILE_PATH_LITERAL |
+ |
+namespace history { |
+ |
+// filenames |
+#if defined(OS_ANDROID) |
+const base::FilePath::CharType kAndroidCacheFilename[] = FPL("AndroidCache"); |
+#endif |
+const base::FilePath::CharType kArchivedHistoryFilename[] = |
+ FPL("Archived History"); |
+const base::FilePath::CharType kFaviconsFilename[] = FPL("Favicons"); |
+const base::FilePath::CharType kHistoryFilename[] = FPL("History"); |
+const base::FilePath::CharType kThumbnailsFilename[] = FPL("Thumbnails"); |
+ |
+} // namespace history |