| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/extensions/extension_page_actions_module_constants.h" | 5 #include "chrome/browser/extensions/extension_page_actions_module_constants.h" |
| 6 | 6 |
| 7 namespace extension_page_actions_module_constants { | 7 namespace extension_page_actions_module_constants { |
| 8 | 8 |
| 9 const wchar_t kTabIdKey[] = L"tabId"; | 9 const wchar_t kTabIdKey[] = L"tabId"; |
| 10 const wchar_t kUrlKey[] = L"url"; | 10 const wchar_t kUrlKey[] = L"url"; |
| 11 const wchar_t kTitleKey[] = L"title"; |
| 12 const wchar_t kIconIdKey[] = L"iconId"; |
| 11 | 13 |
| 12 const char kNoExtensionError[] = "No extension with id: *."; | 14 const char kNoExtensionError[] = "No extension with id: *."; |
| 13 const char kNoTabError[] = "No tab with id: *."; | 15 const char kNoTabError[] = "No tab with id: *."; |
| 14 const char kNoPageActionError[] = "No PageAction with id: *."; | 16 const char kNoPageActionError[] = "No PageAction with id: *."; |
| 15 const char kUrlNotActiveError[] = "This url is no longer active: *."; | 17 const char kUrlNotActiveError[] = "This url is no longer active: *."; |
| 16 | 18 |
| 17 const char kEnablePageActionFunction[] = "EnablePageAction"; | 19 const char kEnablePageActionFunction[] = "EnablePageAction"; |
| 18 const char kDisablePageActionFunction[] = "DisablePageAction"; | 20 const char kDisablePageActionFunction[] = "DisablePageAction"; |
| 19 | 21 |
| 20 } // namespace extension_page_actions_module_constants | 22 } // namespace extension_page_actions_module_constants |
| OLD | NEW |