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

Unified Diff: components/network_hints/renderer/dns_prefetch_queue.cc

Issue 848303005: Renamed the dns_prefetch component to network_predictor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 5 years, 11 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/network_hints/renderer/dns_prefetch_queue.cc
diff --git a/components/dns_prefetch/renderer/predictor_queue.cc b/components/network_hints/renderer/dns_prefetch_queue.cc
similarity index 97%
rename from components/dns_prefetch/renderer/predictor_queue.cc
rename to components/network_hints/renderer/dns_prefetch_queue.cc
index 16911081d761fce841c4ac44567c37f94d850ed0..8328df91faace30b8a5244d613b99f36f0e2df6a 100644
--- a/components/dns_prefetch/renderer/predictor_queue.cc
+++ b/components/network_hints/renderer/dns_prefetch_queue.cc
@@ -4,12 +4,12 @@
// See header file for description of DnsQueue class
-#include "components/dns_prefetch/renderer/predictor_queue.h"
+#include "components/network_hints/renderer/dns_prefetch_queue.h"
#include "base/logging.h"
#include "base/metrics/stats_counters.h"
-namespace dns_prefetch {
+namespace network_hints {
DnsQueue::DnsQueue(BufferSize size)
: buffer_(new char[size + 2]),
@@ -153,4 +153,4 @@ bool DnsQueue::Validate() {
((0 == size_) == (readable_ == writeable_));
}
-} // namespace dns_prefetch
+} // namespace network_hints

Powered by Google App Engine
This is Rietveld 408576698