OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 kActiveKey[] = "active"; | 9 const char kActiveKey[] = "active"; |
10 const char kAllFramesKey[] = "allFrames"; | 10 const char kAllFramesKey[] = "allFrames"; |
(...skipping 14 matching lines...) Expand all Loading... |
25 const char kLastFocusedWindowKey[] = "lastFocusedWindow"; | 25 const char kLastFocusedWindowKey[] = "lastFocusedWindow"; |
26 const char kLeftKey[] = "left"; | 26 const char kLeftKey[] = "left"; |
27 const char kNewPositionKey[] = "newPosition"; | 27 const char kNewPositionKey[] = "newPosition"; |
28 const char kNewWindowIdKey[] = "newWindowId"; | 28 const char kNewWindowIdKey[] = "newWindowId"; |
29 const char kOldPositionKey[] = "oldPosition"; | 29 const char kOldPositionKey[] = "oldPosition"; |
30 const char kOldWindowIdKey[] = "oldWindowId"; | 30 const char kOldWindowIdKey[] = "oldWindowId"; |
31 const char kOpenerTabIdKey[] = "openerTabId"; | 31 const char kOpenerTabIdKey[] = "openerTabId"; |
32 const char kPinnedKey[] = "pinned"; | 32 const char kPinnedKey[] = "pinned"; |
33 const char kQualityKey[] = "quality"; | 33 const char kQualityKey[] = "quality"; |
34 const char kHighlightedKey[] = "highlighted"; | 34 const char kHighlightedKey[] = "highlighted"; |
| 35 const char kRunAtKey[] = "runAt"; |
35 const char kSelectedKey[] = "selected"; | 36 const char kSelectedKey[] = "selected"; |
36 const char kShowStateKey[] = "state"; | 37 const char kShowStateKey[] = "state"; |
37 const char kStatusKey[] = "status"; | 38 const char kStatusKey[] = "status"; |
38 const char kTabIdKey[] = "tabId"; | 39 const char kTabIdKey[] = "tabId"; |
39 const char kTabIdsKey[] = "tabIds"; | 40 const char kTabIdsKey[] = "tabIds"; |
40 const char kTabsKey[] = "tabs"; | 41 const char kTabsKey[] = "tabs"; |
41 const char kTabUrlKey[] = "tabUrl"; | 42 const char kTabUrlKey[] = "tabUrl"; |
42 const char kTitleKey[] = "title"; | 43 const char kTitleKey[] = "title"; |
43 const char kToIndexKey[] = "toIndex"; | 44 const char kToIndexKey[] = "toIndex"; |
44 const char kTopKey[] = "top"; | 45 const char kTopKey[] = "top"; |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 const char kInvalidWindowStateError[] = "Invalid value for state"; | 98 const char kInvalidWindowStateError[] = "Invalid value for state"; |
98 | 99 |
99 const char kNoCodeOrFileToExecuteError[] = "No source code or file specified."; | 100 const char kNoCodeOrFileToExecuteError[] = "No source code or file specified."; |
100 const char kMoreThanOneValuesError[] = "Code and file should not be specified " | 101 const char kMoreThanOneValuesError[] = "Code and file should not be specified " |
101 "at the same time in the second argument."; | 102 "at the same time in the second argument."; |
102 const char kLoadFileError[] = "Failed to load file: \"*\". "; | 103 const char kLoadFileError[] = "Failed to load file: \"*\". "; |
103 const char kCannotDetermineLanguageOfUnloadedTab[] = | 104 const char kCannotDetermineLanguageOfUnloadedTab[] = |
104 "Cannot determine language: tab not loaded"; | 105 "Cannot determine language: tab not loaded"; |
105 | 106 |
106 } // namespace extension_tabs_module_constants | 107 } // namespace extension_tabs_module_constants |
OLD | NEW |