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

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

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/history_constants.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « components/history/core/browser/history_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698