| Index: chrome/browser/safe_browsing/protocol_manager.cc
 | 
| diff --git a/chrome/browser/safe_browsing/protocol_manager.cc b/chrome/browser/safe_browsing/protocol_manager.cc
 | 
| index b11265fcb27c353f9fda00f37274fdc467041428..e27b46b4a1573a9f13f183a8a134212e1a9a513f 100644
 | 
| --- a/chrome/browser/safe_browsing/protocol_manager.cc
 | 
| +++ b/chrome/browser/safe_browsing/protocol_manager.cc
 | 
| @@ -4,6 +4,7 @@
 | 
|  
 | 
|  #include "chrome/browser/safe_browsing/protocol_manager.h"
 | 
|  
 | 
| +#include "base/base64.h"
 | 
|  #include "base/file_version_info.h"
 | 
|  #include "base/histogram.h"
 | 
|  #include "base/logging.h"
 | 
| @@ -19,7 +20,6 @@
 | 
|  #include "chrome/browser/safe_browsing/protocol_parser.h"
 | 
|  #include "chrome/browser/safe_browsing/safe_browsing_service.h"
 | 
|  #include "chrome/common/env_vars.h"
 | 
| -#include "net/base/base64.h"
 | 
|  #include "net/base/escape.h"
 | 
|  #include "net/base/load_flags.h"
 | 
|  
 | 
| @@ -386,7 +386,7 @@ bool SafeBrowsingProtocolManager::HandleServiceResponse(const GURL& url,
 | 
|          std::string data_str;
 | 
|          data_str.assign(data, length);
 | 
|          std::string encoded_chunk;
 | 
| -        net::Base64Encode(data, &encoded_chunk);
 | 
| +        base::Base64Encode(data, &encoded_chunk);
 | 
|          SB_DLOG(INFO) << "ParseChunk error for chunk: " << chunk_url.url
 | 
|                        << ", client_key: " << client_key_
 | 
|                        << ", wrapped_key: " << wrapped_key_
 | 
| 
 |