| Index: chrome/browser/policy/managed_bookmarks_policy_handler.cc
 | 
| diff --git a/chrome/browser/policy/managed_bookmarks_policy_handler.cc b/chrome/browser/policy/managed_bookmarks_policy_handler.cc
 | 
| index 75c8e78bc7a5d10eb6edd820897e1478c7d29961..8c71fd3fcfa0cb9a12dff45b40fe95ea4d029e94 100644
 | 
| --- a/chrome/browser/policy/managed_bookmarks_policy_handler.cc
 | 
| +++ b/chrome/browser/policy/managed_bookmarks_policy_handler.cc
 | 
| @@ -10,7 +10,7 @@
 | 
|  #include "components/bookmarks/managed/managed_bookmarks_tracker.h"
 | 
|  #include "components/policy/core/browser/policy_error_map.h"
 | 
|  #include "components/policy/core/common/policy_map.h"
 | 
| -#include "components/url_formatter/url_fixer.h"
 | 
| +#include "components/url_fixer/url_fixer.h"
 | 
|  #include "policy/policy_constants.h"
 | 
|  #include "url/gurl.h"
 | 
|  
 | 
| @@ -71,7 +71,7 @@
 | 
|      } else {
 | 
|        // Make sure the URL is valid before passing a bookmark to the pref.
 | 
|        dict->Remove(ManagedBookmarksTracker::kChildren, NULL);
 | 
| -      GURL gurl = url_formatter::FixupURL(url, std::string());
 | 
| +      GURL gurl = url_fixer::FixupURL(url, "");
 | 
|        if (!gurl.is_valid()) {
 | 
|          it = list->Erase(it, NULL);
 | 
|          continue;
 | 
| 
 |