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

Unified Diff: chrome/common/net/predictor_common.h

Issue 644123002: Componentize renderer side of DNS prefetching. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments Created 6 years, 2 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: chrome/common/net/predictor_common.h
diff --git a/chrome/common/net/predictor_common.h b/chrome/common/net/predictor_common.h
deleted file mode 100644
index 208ee3c70c6552a35f32692dfd9ed57b05860155..0000000000000000000000000000000000000000
--- a/chrome/common/net/predictor_common.h
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright (c) 2006-2008 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.
-
-// This file has shared types used across IPC between render_dns_master.cc
-// and dns_master.cc
-
-#ifndef CHROME_COMMON_NET_PREDICTOR_COMMON_H_
-#define CHROME_COMMON_NET_PREDICTOR_COMMON_H_
-
-#include <string>
-#include <vector>
-
-#include "url/gurl.h"
-
-namespace chrome_common_net {
-
-// IPC messages are passed from the renderer to the browser in the form of
-// Namelist instances.
-// Each element of this vector is a hostname that needs to be looked up.
-// The hostnames should never be empty strings.
-typedef std::vector<std::string> NameList;
-// TODO(jar): We still need to switch to passing scheme/host/port in UrlList,
-// instead of NameList, from renderer (where content of pages are scanned for
-// links) to browser (where we perform predictive actions).
-typedef std::vector<GURL> UrlList;
-}
-
-#endif // CHROME_COMMON_NET_PREDICTOR_COMMON_H_

Powered by Google App Engine
This is Rietveld 408576698