| Index: chrome/common/extensions/extension_constants.cc
|
| diff --git a/chrome/common/extensions/extension_constants.cc b/chrome/common/extensions/extension_constants.cc
|
| index d203552a945a6639afe8192826ad45084ec8c86b..3621b9f03747c302b88c74809d03c856c23b2065 100644
|
| --- a/chrome/common/extensions/extension_constants.cc
|
| +++ b/chrome/common/extensions/extension_constants.cc
|
| @@ -31,6 +31,7 @@ const wchar_t* kPageAction = L"page_action";
|
| const wchar_t* kPageActions = L"page_actions";
|
| const wchar_t* kPageActionIcons = L"icons";
|
| const wchar_t* kPageActionDefaultIcon = L"default_icon";
|
| +const wchar_t* kPageActionDefaultPopup = L"default_popup";
|
| const wchar_t* kPageActionDefaultTitle = L"default_title";
|
| const wchar_t* kPageActionPopup = L"popup";
|
| const wchar_t* kPageActionPopupHeight = L"height";
|
| @@ -133,6 +134,9 @@ const char* kInvalidPageActionId =
|
| "Required value 'id' is missing or invalid.";
|
| const char* kInvalidPageActionDefaultTitle =
|
| "Invalid value for 'default_title'.";
|
| +const char* kInvalidPageActionOldAndNewKeys =
|
| + "Key \"*\" is deprecated. Key \"*\" has the same meaning. You can not "
|
| + "use both.";
|
| const char* kInvalidPageActionPopup =
|
| "Invalid type for page action popup.";
|
| const char* kInvalidPageActionPopupHeight =
|
|
|