| Index: chrome/browser/safe_browsing/protocol_parser.cc
|
| diff --git a/chrome/browser/safe_browsing/protocol_parser.cc b/chrome/browser/safe_browsing/protocol_parser.cc
|
| index 135e76f661cec927852e836b4971c9b07906ca2d..1ad27c2d66a20cdc26d53c73b462250833f45248 100644
|
| --- a/chrome/browser/safe_browsing/protocol_parser.cc
|
| +++ b/chrome/browser/safe_browsing/protocol_parser.cc
|
| @@ -131,9 +131,10 @@ class BufferReader {
|
| DISALLOW_COPY_AND_ASSIGN(BufferReader);
|
| };
|
|
|
| -bool ParseGetHashMetadata(size_t hash_count,
|
| - BufferReader* reader,
|
| - std::vector<SBFullHashResult>* full_hashes) {
|
| +bool ParseGetHashMetadata(
|
| + size_t hash_count,
|
| + BufferReader* reader,
|
| + std::vector<safe_browsing::SBFullHashResult>* full_hashes) {
|
| for (size_t i = 0; i < hash_count; ++i) {
|
| base::StringPiece line;
|
| if (!reader->GetLine(&line))
|
| @@ -199,7 +200,7 @@ bool ParseGetHash(const char* chunk_data,
|
| return false;
|
|
|
| SBFullHashResult full_hash;
|
| - full_hash.list_id = safe_browsing::GetListId(cmd_parts[0]);
|
| + full_hash.list_id = GetListId(cmd_parts[0]);
|
|
|
| size_t hash_len;
|
| if (!base::StringToSizeT(cmd_parts[1], &hash_len))
|
|
|