Correctly initialize PepperPluginInstanceImpl::layer_is_hardware_
[chromium-blink-merge.git] / chrome / common / extensions / extension_file_util.h
blobf795726cfff62615a413fe6ff7eba6121b74a310
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_FILE_UTIL_H_
6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_FILE_UTIL_H_
8 #include <set>
10 namespace base {
11 class FilePath;
14 namespace extensions {
15 class Extension;
18 // DEPRECATED: Prefer extensions/common/file_util.cc.
19 namespace extension_file_util {
21 // Returns a list of paths (relative to the extension dir) for images that
22 // the browser might load (like themes and page action icons) for the given
23 // extension.
24 std::set<base::FilePath> GetBrowserImagePaths(
25 const extensions::Extension* extension);
27 } // namespace extension_file_util
29 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_FILE_UTIL_H_