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

Unified Diff: components/visitedlink/browser/visitedlink_master.cc

Issue 2059143002: "up-to-date" should only use hyphens when used as compound modifier of a noun (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 6 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
« no previous file with comments | « components/update_client/action_update_check.cc ('k') | content/common/all_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/visitedlink/browser/visitedlink_master.cc
diff --git a/components/visitedlink/browser/visitedlink_master.cc b/components/visitedlink/browser/visitedlink_master.cc
index 2e8eb5c620bd69d06079148d9195a7755d5e259c..792c7507a21b2aeb065ad04b57d31e6b8b383746 100644
--- a/components/visitedlink/browser/visitedlink_master.cc
+++ b/components/visitedlink/browser/visitedlink_master.cc
@@ -362,7 +362,7 @@ void VisitedLinkMaster::AddURL(const GURL& url) {
if (!table_builder_.get() &&
!table_is_loading_from_file_ &&
index != null_hash_) {
- // Not rebuilding, so we want to keep the file on disk up-to-date.
+ // Not rebuilding, so we want to keep the file on disk up to date.
if (persist_to_disk_) {
WriteUsedItemCountToFile();
WriteHashRangeToFile(index, index);
@@ -380,7 +380,7 @@ void VisitedLinkMaster::AddURLs(const std::vector<GURL>& urls) {
ResizeTableIfNecessary();
}
- // Keeps the file on disk up-to-date.
+ // Keeps the file on disk up to date.
if (!table_builder_.get() &&
!table_is_loading_from_file_ &&
persist_to_disk_)
@@ -816,7 +816,7 @@ bool VisitedLinkMaster::ReadFileHeader(FILE* file,
if (signature != kFileSignature)
return false;
- // Verify the version is up-to-date. As with other read errors, a version
+ // Verify the version is up to date. As with other read errors, a version
// mistmatch will trigger a rebuild of the database from history, which will
// have the effect of migrating the database.
int32_t version;
« no previous file with comments | « components/update_client/action_update_check.cc ('k') | content/common/all_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698