Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(176)

Unified Diff: components/history/core/browser/history_constants.h

Issue 722723005: Move constants used by history component to history namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix android build failures Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/history/core/browser/BUILD.gn ('k') | components/history/core/browser/history_constants.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/history/core/browser/history_constants.h
diff --git a/components/history/core/browser/history_constants.h b/components/history/core/browser/history_constants.h
new file mode 100644
index 0000000000000000000000000000000000000000..910b4ca7f33e5fe0937cee2954d2529c381089b6
--- /dev/null
+++ b/components/history/core/browser/history_constants.h
@@ -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.
+
+#ifndef COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_CONSTANTS_H_
+#define COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_CONSTANTS_H_
+
+#include "base/files/file_path.h"
+
+namespace history {
+
+// filenames
+#if defined(OS_ANDROID)
+extern const base::FilePath::CharType kAndroidCacheFilename[];
+#endif
+extern const base::FilePath::CharType kArchivedHistoryFilename[];
+extern const base::FilePath::CharType kFaviconsFilename[];
+extern const base::FilePath::CharType kHistoryFilename[];
+extern const base::FilePath::CharType kThumbnailsFilename[];
+
+} // namespace history
+
+#endif // COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_CONSTANTS_H_
« no previous file with comments | « components/history/core/browser/BUILD.gn ('k') | components/history/core/browser/history_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698