| Index: extensions/browser/content_hash_tree.cc
|
| diff --git a/extensions/browser/content_hash_tree.cc b/extensions/browser/content_hash_tree.cc
|
| index 8abbf6fd9f1ae8288275c3da6b5961017b943b58..e1298cf4ca07a64b463b3d8d1e8f1f55b93a157b 100644
|
| --- a/extensions/browser/content_hash_tree.cc
|
| +++ b/extensions/browser/content_hash_tree.cc
|
| @@ -42,7 +42,7 @@ std::string ComputeTreeHashRoot(const std::vector<std::string>& leaf_hashes,
|
| }
|
| parent_nodes.push_back(std::string(crypto::kSHA256Length, 0));
|
| std::string* output = &(parent_nodes.back());
|
| - hash->Finish(string_as_array(output), output->size());
|
| + hash->Finish(base::string_as_array(output), output->size());
|
| }
|
| current_nodes.swap(parent_nodes);
|
| parent_nodes.clear();
|
|
|