OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 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 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_SIDEBAR_UTILS_H_ |
| 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_SIDEBAR_UTILS_H_ |
| 7 #pragma once |
| 8 |
| 9 #include <string> |
| 10 |
| 11 class Extension; |
| 12 class GURL; |
| 13 |
| 14 namespace extension_sidebar_utils { |
| 15 |
| 16 // Returns id of an extension owning a sidebar identified by |content_id|. |
| 17 std::string GetExtensionIdByContentId(const std::string& content_id); |
| 18 |
| 19 // Resolves |url_string| relative to |extension|'s url and verifies it |
| 20 // against |extension|'s host permissions. |
| 21 // In case of any problem, returns an empty invalid GURL and |error| receives |
| 22 // the corresponding error message. |
| 23 GURL ResolveAndVerifyUrl(const std::string& url_string, |
| 24 const Extension* extension, |
| 25 std::string* error); |
| 26 |
| 27 } // namespace extension_sidebar_utils |
| 28 |
| 29 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_SIDEBAR_UTILS_H_ |
OLD | NEW |