| 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_tabs_module_constants.h" | 5 #include "chrome/browser/extensions/extension_tabs_module_constants.h" |
| 6 | 6 |
| 7 namespace extension_tabs_module_constants { | 7 namespace extension_tabs_module_constants { |
| 8 | 8 |
| 9 const wchar_t kFavIconUrlKey[] = L"favIconUrl"; | 9 const wchar_t kFavIconUrlKey[] = L"favIconUrl"; |
| 10 const wchar_t kFocusedKey[] = L"focused"; | 10 const wchar_t kFocusedKey[] = L"focused"; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 const char kNoSelectedTabError[] = "No selected tab"; | 40 const char kNoSelectedTabError[] = "No selected tab"; |
| 41 const char kInvalidUrlError[] = "Invalid url: \"*\"."; | 41 const char kInvalidUrlError[] = "Invalid url: \"*\"."; |
| 42 const char kInternalVisibleTabCaptureError[] = | 42 const char kInternalVisibleTabCaptureError[] = |
| 43 "Internal error while trying to capture visible region of the current tab"; | 43 "Internal error while trying to capture visible region of the current tab"; |
| 44 const char kNotImplementedError[] = "This call is not yet implemented"; | 44 const char kNotImplementedError[] = "This call is not yet implemented"; |
| 45 const char kCannotAccessPageError[] = "Cannot access contents of url \"*\". " | 45 const char kCannotAccessPageError[] = "Cannot access contents of url \"*\". " |
| 46 "Extension manifest must request permission to access this host."; | 46 "Extension manifest must request permission to access this host."; |
| 47 const char kSupportedInWindowsOnlyError[] = "Supported in Windows only"; | 47 const char kSupportedInWindowsOnlyError[] = "Supported in Windows only"; |
| 48 | 48 |
| 49 const char kNoCodeOrFileToExecuteError[] = "No source code or file specified."; | 49 const char kNoCodeOrFileToExecuteError[] = "No source code or file specified."; |
| 50 const char kMoreThanOneValuesError[] = "There should be only one value (either" | 50 const char kMoreThanOneValuesError[] = "Code and file should not be specified " |
| 51 "code or file) in the second argument."; | 51 "at the same time in the second argument."; |
| 52 const char kLoadFileError[] = "Failed to load file: \"*\". "; | 52 const char kLoadFileError[] = "Failed to load file: \"*\". "; |
| 53 | 53 |
| 54 } // namespace extension_tabs_module_constants | 54 } // namespace extension_tabs_module_constants |
| OLD | NEW |