OLD | NEW |
(Empty) | |
| 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. |
| 4 |
| 5 #ifndef CHROME_COMMON_EXTENSIONS_API_EXTENSION_ACTION_ACTION_HANDLER_HELPERS_H_ |
| 6 #define CHROME_COMMON_EXTENSIONS_API_EXTENSION_ACTION_ACTION_HANDLER_HELPERS_H_ |
| 7 |
| 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "chrome/common/extensions/api/extension_action/action_info.h" |
| 10 #include "chrome/common/extensions/extension.h" |
| 11 |
| 12 namespace base { |
| 13 class DictionaryValue; |
| 14 } |
| 15 |
| 16 namespace extensions { |
| 17 |
| 18 scoped_ptr<ActionInfo> LoadActionInfo( |
| 19 const Extension* extension, |
| 20 const base::DictionaryValue* manifest_section, |
| 21 string16* error); |
| 22 |
| 23 } // namespace extensions |
| 24 |
| 25 #endif // CHROME_COMMON_EXTENSIONS_API_EXTENSION_ACTION_ACTION_HANDLER_HELPERS_
H_ |
OLD | NEW |