| Index: chrome/browser/autocomplete/autocomplete_edit.cc
 | 
| ===================================================================
 | 
| --- chrome/browser/autocomplete/autocomplete_edit.cc	(revision 100345)
 | 
| +++ chrome/browser/autocomplete/autocomplete_edit.cc	(working copy)
 | 
| @@ -22,7 +22,7 @@
 | 
|  #include "chrome/browser/extensions/extension_omnibox_api.h"
 | 
|  #include "chrome/browser/google/google_url_tracker.h"
 | 
|  #include "chrome/browser/instant/instant_controller.h"
 | 
| -#include "chrome/browser/net/predictor_api.h"
 | 
| +#include "chrome/browser/net/predictor.h"
 | 
|  #include "chrome/browser/net/url_fixer_upper.h"
 | 
|  #include "chrome/browser/prerender/prerender_manager.h"
 | 
|  #include "chrome/browser/profiles/profile.h"
 | 
| @@ -1035,8 +1035,11 @@
 | 
|      // Warm up DNS Prefetch cache, or preconnect to a search service.
 | 
|      UMA_HISTOGRAM_ENUMERATION("Autocomplete.MatchType", match.type,
 | 
|                                AutocompleteMatch::NUM_TYPES);
 | 
| -    chrome_browser_net::AnticipateOmniboxUrl(match.destination_url,
 | 
| -        NetworkActionPredictor::IsPreconnectable(match));
 | 
| +    if (profile_->GetNetworkPredictor()) {
 | 
| +      profile_->GetNetworkPredictor()->AnticipateOmniboxUrl(
 | 
| +          match.destination_url,
 | 
| +          NetworkActionPredictor::IsPreconnectable(match));
 | 
| +    }
 | 
|      // We could prefetch the alternate nav URL, if any, but because there
 | 
|      // can be many of these as a user types an initial series of characters,
 | 
|      // the OS DNS cache could suffer eviction problems for minimal gain.
 | 
| 
 |