OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2006-2008 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. |
| 4 |
| 5 #include "base/file_path.h" |
| 6 |
| 7 // Gets a FilePath for a resource inside an extension. |extension_path| is the |
| 8 // full path to the extension directory. |resource_path| is the path to the |
| 9 // resource from the extension root, including the leading '/'. |
| 10 FilePath GetPathForExtensionResource(const FilePath& extension_path, |
| 11 const std::string& resource_path); |
| 12 |
| 13 // Registers support for the extension URL scheme. |
| 14 void RegisterExtensionProtocol(); |
OLD | NEW |