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

Unified Diff: net/base/dns_resolution_observer.h

Issue 126110: [Refactor] Rename DnsResolutionObserver --> HostResolver::Observer.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 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 | « chrome/browser/net/dns_global.cc ('k') | net/base/host_resolver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/dns_resolution_observer.h
===================================================================
--- net/base/dns_resolution_observer.h (revision 18371)
+++ net/base/dns_resolution_observer.h (working copy)
@@ -1,45 +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 supports network stack independent notification of progress
-// towards resolving a hostname.
-
-// The observer class supports exactly one active (Add'ed) instance, and in
-// typical usage, that observer will be Add'ed during process startup, and
-// Remove'd during process termination.
-
-
-#ifndef NET_BASE_DNS_RESOLUTION_OBSERVER_H_
-#define NET_BASE_DNS_RESOLUTION_OBSERVER_H_
-
-#include <string>
-
-#include "net/base/host_resolver.h"
-
-class GURL;
-
-namespace net {
-
-// TODO(eroman): Move this interface to HostResolver::Observer.
-class DnsResolutionObserver {
- public:
- virtual ~DnsResolutionObserver() {}
-
- // For each OnStartResolution() notification, there should be a later
- // OnFinishResolutionWithStatus() indicating completion of the resolution
- // activity.
- // Related pairs of notification will arrive with matching id values.
- // A caller may use the id values to match up these asynchronous calls
- // from among a larger call stream.
- virtual void OnStartResolution(int id,
- const HostResolver::RequestInfo& info) = 0;
- virtual void OnFinishResolutionWithStatus(
- int id,
- bool was_resolved,
- const HostResolver::RequestInfo& info) = 0;
-};
-
-} // namspace net
-
-#endif // NET_BASE_DNS_RESOLUTION_OBSERVER_H_
« no previous file with comments | « chrome/browser/net/dns_global.cc ('k') | net/base/host_resolver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698