| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 char kAllFramesKey[] = "allFrames"; | 9 const char kAllFramesKey[] = "allFrames"; |
| 10 const char kCodeKey[] = "code"; | 10 const char kCodeKey[] = "code"; |
| 11 const char kFavIconUrlKey[] = "favIconUrl"; | 11 const char kFavIconUrlKey[] = "favIconUrl"; |
| 12 const char kFileKey[] = "file"; | 12 const char kFileKey[] = "file"; |
| 13 const char kFocusedKey[] = "focused"; | 13 const char kFocusedKey[] = "focused"; |
| 14 const char kFormatKey[] = "format"; | 14 const char kFormatKey[] = "format"; |
| 15 const char kFromIndexKey[] = "fromIndex"; | 15 const char kFromIndexKey[] = "fromIndex"; |
| 16 const char kHeightKey[] = "height"; | 16 const char kHeightKey[] = "height"; |
| 17 const char kIdKey[] = "id"; | 17 const char kIdKey[] = "id"; |
| 18 const char kIncognitoKey[] = "incognito"; | 18 const char kIncognitoKey[] = "incognito"; |
| 19 const char kIndexKey[] = "index"; | 19 const char kIndexKey[] = "index"; |
| 20 const char kLeftKey[] = "left"; | 20 const char kLeftKey[] = "left"; |
| 21 const char kNewPositionKey[] = "newPosition"; | 21 const char kNewPositionKey[] = "newPosition"; |
| 22 const char kNewWindowIdKey[] = "newWindowId"; | 22 const char kNewWindowIdKey[] = "newWindowId"; |
| 23 const char kOldPositionKey[] = "oldPosition"; | 23 const char kOldPositionKey[] = "oldPosition"; |
| 24 const char kOldWindowIdKey[] = "oldWindowId"; | 24 const char kOldWindowIdKey[] = "oldWindowId"; |
| 25 const char kPinnedKey[] = "pinned"; | 25 const char kPinnedKey[] = "pinned"; |
| 26 const char kPopulateKey[] = "populate"; | 26 const char kPopulateKey[] = "populate"; |
| 27 const char kQualityKey[] = "quality"; | 27 const char kQualityKey[] = "quality"; |
| 28 const char kSelectedKey[] = "selected"; | 28 const char kSelectedKey[] = "selected"; |
| 29 const char kSocketAddressKey[] = "socketAddress"; |
| 29 const char kStatusKey[] = "status"; | 30 const char kStatusKey[] = "status"; |
| 30 const char kTabIdKey[] = "tabId"; | 31 const char kTabIdKey[] = "tabId"; |
| 31 const char kTabsKey[] = "tabs"; | 32 const char kTabsKey[] = "tabs"; |
| 32 const char kTabUrlKey[] = "tabUrl"; | 33 const char kTabUrlKey[] = "tabUrl"; |
| 33 const char kTitleKey[] = "title"; | 34 const char kTitleKey[] = "title"; |
| 34 const char kToIndexKey[] = "toIndex"; | 35 const char kToIndexKey[] = "toIndex"; |
| 35 const char kTopKey[] = "top"; | 36 const char kTopKey[] = "top"; |
| 36 const char kUrlKey[] = "url"; | 37 const char kUrlKey[] = "url"; |
| 37 const char kWindowClosing[] = "isWindowClosing"; | 38 const char kWindowClosing[] = "isWindowClosing"; |
| 38 const char kWidthKey[] = "width"; | 39 const char kWidthKey[] = "width"; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 68 const char kSupportedInWindowsOnlyError[] = "Supported in Windows only"; | 69 const char kSupportedInWindowsOnlyError[] = "Supported in Windows only"; |
| 69 | 70 |
| 70 const char kNoCodeOrFileToExecuteError[] = "No source code or file specified."; | 71 const char kNoCodeOrFileToExecuteError[] = "No source code or file specified."; |
| 71 const char kMoreThanOneValuesError[] = "Code and file should not be specified " | 72 const char kMoreThanOneValuesError[] = "Code and file should not be specified " |
| 72 "at the same time in the second argument."; | 73 "at the same time in the second argument."; |
| 73 const char kLoadFileError[] = "Failed to load file: \"*\". "; | 74 const char kLoadFileError[] = "Failed to load file: \"*\". "; |
| 74 const char kCannotDetermineLanguageOfUnloadedTab[] = | 75 const char kCannotDetermineLanguageOfUnloadedTab[] = |
| 75 "Cannot determine language: tab not loaded"; | 76 "Cannot determine language: tab not loaded"; |
| 76 | 77 |
| 77 } // namespace extension_tabs_module_constants | 78 } // namespace extension_tabs_module_constants |
| OLD | NEW |