Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(305)

Side by Side Diff: chrome/common/extensions/api/extension_action/action_handler_helpers.h

Issue 11588004: Move ScriptBadge, ActionInfo out of Extension; preparation for BrowserAction (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Yoyo's requested changes Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698