OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "extensions/browser/content_hash_reader.h" | 5 #include "extensions/browser/content_hash_reader.h" |
6 | 6 |
7 #include "base/base64.h" | 7 #include "base/base64.h" |
8 #include "base/file_util.h" | 8 #include "base/files/file_util.h" |
9 #include "base/json/json_reader.h" | 9 #include "base/json/json_reader.h" |
10 #include "base/metrics/histogram.h" | 10 #include "base/metrics/histogram.h" |
11 #include "base/strings/string_util.h" | 11 #include "base/strings/string_util.h" |
12 #include "base/timer/elapsed_timer.h" | 12 #include "base/timer/elapsed_timer.h" |
13 #include "base/values.h" | 13 #include "base/values.h" |
14 #include "crypto/sha2.h" | 14 #include "crypto/sha2.h" |
15 #include "extensions/browser/computed_hashes.h" | 15 #include "extensions/browser/computed_hashes.h" |
16 #include "extensions/browser/content_hash_tree.h" | 16 #include "extensions/browser/content_hash_tree.h" |
17 #include "extensions/browser/verified_contents.h" | 17 #include "extensions/browser/verified_contents.h" |
18 #include "extensions/common/extension.h" | 18 #include "extensions/common/extension.h" |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 DCHECK(block_index >= 0); | 118 DCHECK(block_index >= 0); |
119 | 119 |
120 if (static_cast<unsigned>(block_index) >= hashes_.size()) | 120 if (static_cast<unsigned>(block_index) >= hashes_.size()) |
121 return false; | 121 return false; |
122 *result = &hashes_[block_index]; | 122 *result = &hashes_[block_index]; |
123 | 123 |
124 return true; | 124 return true; |
125 } | 125 } |
126 | 126 |
127 } // namespace extensions | 127 } // namespace extensions |
OLD | NEW |