// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef EXTENSIONS_BROWSER_CONTENT_HASH_READER_H_ #define EXTENSIONS_BROWSER_CONTENT_HASH_READER_H_ #include <memory> #include <string> #include <vector> #include "base/files/file_path.h" #include "base/memory/scoped_refptr.h" #include "base/version.h" #include "extensions/browser/computed_hashes.h" #include "extensions/browser/content_verifier/content_verifier_key.h" #include "extensions/common/extension_id.h" namespace extensions { class ContentHash; // This class creates an object that will read expected hashes that may have // been fetched/calculated by the ContentHashFetcher, and vends them out for // use in ContentVerifyJob's. class ContentHashReader { … }; } // namespace extensions #endif // EXTENSIONS_BROWSER_CONTENT_HASH_READER_H_