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

Unified Diff: components/reading_list/core/offline_url_utils.cc

Issue 2763233003: Move ReadingList model to components/reading_list/core (Closed)
Patch Set: feedback Created 3 years, 9 months 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
Index: components/reading_list/core/offline_url_utils.cc
diff --git a/components/reading_list/ios/offline_url_utils.cc b/components/reading_list/core/offline_url_utils.cc
similarity index 58%
rename from components/reading_list/ios/offline_url_utils.cc
rename to components/reading_list/core/offline_url_utils.cc
index 25b0561bdf186dde16b2f868febf7638ecaca1d8..15429227ffef758b8c2133668dc82a48a8993146 100644
--- a/components/reading_list/ios/offline_url_utils.cc
+++ b/components/reading_list/core/offline_url_utils.cc
@@ -2,21 +2,24 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "components/reading_list/ios/offline_url_utils.h"
+#include "components/reading_list/core/offline_url_utils.h"
+#include "base/logging.h"
#include "base/md5.h"
#include "base/strings/stringprintf.h"
namespace {
-const char kOfflineDirectory[] = "Offline";
-const char kMainPageFileName[] = "page.html";
-const char kPDFFileName[] = "file.pdf";
+const base::FilePath::CharType kOfflineDirectory[] =
+ FILE_PATH_LITERAL("Offline");
+const base::FilePath::CharType kMainPageFileName[] =
+ FILE_PATH_LITERAL("page.html");
+const base::FilePath::CharType kPDFFileName[] = FILE_PATH_LITERAL("file.pdf");
} // namespace
namespace reading_list {
base::FilePath OfflineRootDirectoryPath(const base::FilePath& profile_path) {
- return profile_path.Append(FILE_PATH_LITERAL(kOfflineDirectory));
+ return profile_path.Append(kOfflineDirectory);
}
std::string OfflineURLDirectoryID(const GURL& url) {
@@ -27,17 +30,20 @@ base::FilePath OfflineURLDirectoryAbsolutePath(
const base::FilePath& profile_path,
const GURL& url) {
return OfflineURLAbsolutePathFromRelativePath(
- profile_path, base::FilePath(OfflineURLDirectoryID(url)));
+ profile_path, base::FilePath::FromUTF8Unsafe(OfflineURLDirectoryID(url)));
}
base::FilePath OfflinePagePath(const GURL& url, OfflineFileType type) {
- base::FilePath directory(OfflineURLDirectoryID(url));
+ base::FilePath directory =
+ base::FilePath::FromUTF8Unsafe(OfflineURLDirectoryID(url));
switch (type) {
case OFFLINE_TYPE_HTML:
- return directory.Append(FILE_PATH_LITERAL(kMainPageFileName));
+ return directory.Append(kMainPageFileName);
case OFFLINE_TYPE_PDF:
- return directory.Append(FILE_PATH_LITERAL(kPDFFileName));
+ return directory.Append(kPDFFileName);
}
+ NOTREACHED();
+ return base::FilePath();
}
base::FilePath OfflineURLAbsolutePathFromRelativePath(
« no previous file with comments | « components/reading_list/core/offline_url_utils.h ('k') | components/reading_list/core/offline_url_utils_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698