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 // Constants used for the Tabs API and the Windows API. | 5 // Constants used for the Tabs API and the Windows API. |
6 | 6 |
7 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_ | 7 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_ |
8 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_ | 8 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_ |
9 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 17 matching lines...) Expand all Loading... |
28 extern const char kLastFocusedWindowKey[]; | 28 extern const char kLastFocusedWindowKey[]; |
29 extern const char kLeftKey[]; | 29 extern const char kLeftKey[]; |
30 extern const char kNewPositionKey[]; | 30 extern const char kNewPositionKey[]; |
31 extern const char kNewWindowIdKey[]; | 31 extern const char kNewWindowIdKey[]; |
32 extern const char kOldPositionKey[]; | 32 extern const char kOldPositionKey[]; |
33 extern const char kOldWindowIdKey[]; | 33 extern const char kOldWindowIdKey[]; |
34 extern const char kOpenerTabIdKey[]; | 34 extern const char kOpenerTabIdKey[]; |
35 extern const char kPinnedKey[]; | 35 extern const char kPinnedKey[]; |
36 extern const char kQualityKey[]; | 36 extern const char kQualityKey[]; |
37 extern const char kHighlightedKey[]; | 37 extern const char kHighlightedKey[]; |
| 38 extern const char kRunAtKey[]; |
38 extern const char kSelectedKey[]; | 39 extern const char kSelectedKey[]; |
39 extern const char kShowStateKey[]; | 40 extern const char kShowStateKey[]; |
40 extern const char kStatusKey[]; | 41 extern const char kStatusKey[]; |
41 extern const char kTabIdKey[]; | 42 extern const char kTabIdKey[]; |
42 extern const char kTabIdsKey[]; | 43 extern const char kTabIdsKey[]; |
43 extern const char kTabsKey[]; | 44 extern const char kTabsKey[]; |
44 extern const char kTabUrlKey[]; | 45 extern const char kTabUrlKey[]; |
45 extern const char kTitleKey[]; | 46 extern const char kTitleKey[]; |
46 extern const char kToIndexKey[]; | 47 extern const char kToIndexKey[]; |
47 extern const char kTopKey[]; | 48 extern const char kTopKey[]; |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 extern const char kInvalidWindowStateError[]; | 93 extern const char kInvalidWindowStateError[]; |
93 | 94 |
94 extern const char kNoCodeOrFileToExecuteError[]; | 95 extern const char kNoCodeOrFileToExecuteError[]; |
95 extern const char kMoreThanOneValuesError[]; | 96 extern const char kMoreThanOneValuesError[]; |
96 extern const char kLoadFileError[]; | 97 extern const char kLoadFileError[]; |
97 extern const char kCannotDetermineLanguageOfUnloadedTab[]; | 98 extern const char kCannotDetermineLanguageOfUnloadedTab[]; |
98 | 99 |
99 }; // namespace extension_tabs_module_constants | 100 }; // namespace extension_tabs_module_constants |
100 | 101 |
101 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_ | 102 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_ |
OLD | NEW |