1 // Copyright (c) 2013 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 #include "chrome/common/extensions/api/extension_action/page_action_handler.h"
7 #include "base/strings/utf_string_conversions.h"
8 #include "base/values.h"
9 #include "chrome/common/extensions/extension_constants.h"
10 #include "chrome/common/extensions/extension_file_util.h"
11 #include "extensions/common/extension.h"
12 #include "extensions/common/manifest_constants.h"
13 #include "grit/generated_resources.h"
15 namespace extensions
{
17 namespace keys
= manifest_keys
;
18 namespace errors
= manifest_errors
;
20 PageActionHandler::PageActionHandler() {
23 PageActionHandler::~PageActionHandler() {
26 bool PageActionHandler::Parse(Extension
* extension
, base::string16
* error
) {
27 scoped_ptr
<ActionInfo
> page_action_info
;
28 const base::DictionaryValue
* page_action_value
= NULL
;
30 if (extension
->manifest()->HasKey(keys::kPageActions
)) {
31 const base::ListValue
* list_value
= NULL
;
32 if (!extension
->manifest()->GetList(keys::kPageActions
, &list_value
)) {
33 *error
= base::ASCIIToUTF16(errors::kInvalidPageActionsList
);
37 size_t list_value_length
= list_value
->GetSize();
39 if (list_value_length
== 0u) {
40 // A list with zero items is allowed, and is equivalent to not having
41 // a page_actions key in the manifest. Don't set |page_action_value|.
42 } else if (list_value_length
== 1u) {
43 if (!list_value
->GetDictionary(0, &page_action_value
)) {
44 *error
= base::ASCIIToUTF16(errors::kInvalidPageAction
);
47 } else { // list_value_length > 1u.
48 *error
= base::ASCIIToUTF16(errors::kInvalidPageActionsListSize
);
51 } else if (extension
->manifest()->HasKey(keys::kPageAction
)) {
52 if (!extension
->manifest()->GetDictionary(keys::kPageAction
,
53 &page_action_value
)) {
54 *error
= base::ASCIIToUTF16(errors::kInvalidPageAction
);
59 // An extension cannot have both browser and page actions.
60 if (extension
->manifest()->HasKey(keys::kBrowserAction
)) {
61 *error
= base::ASCIIToUTF16(errors::kOneUISurfaceOnly
);
65 // If page_action_value is not NULL, then there was a valid page action.
66 if (page_action_value
) {
67 page_action_info
= ActionInfo::Load(extension
, page_action_value
, error
);
68 if (!page_action_info
)
69 return false; // Failed to parse page action definition.
71 ActionInfo::SetPageActionInfo(extension
, page_action_info
.release());
76 bool PageActionHandler::Validate(const Extension
* extension
,
78 std::vector
<InstallWarning
>* warnings
) const {
79 const extensions::ActionInfo
* action
=
80 extensions::ActionInfo::GetPageActionInfo(extension
);
81 if (action
&& !action
->default_icon
.empty() &&
82 !extension_file_util::ValidateExtensionIconSet(
85 IDS_EXTENSION_LOAD_ICON_FOR_PAGE_ACTION_FAILED
,
92 const std::vector
<std::string
> PageActionHandler::Keys() const {
93 std::vector
<std::string
> keys
;
94 keys
.push_back(keys::kPageAction
);
95 keys
.push_back(keys::kPageActions
);
99 } // namespace extensions