| 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 // 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 | 9 |
| 10 namespace extension_tabs_module_constants { | 10 namespace extension_tabs_module_constants { |
| 11 | 11 |
| 12 // Keys used in serializing tab data & events. | 12 // Keys used in serializing tab data & events. |
| 13 extern const wchar_t kDataKey[]; | |
| 14 extern const wchar_t kFavIconUrlKey[]; | 13 extern const wchar_t kFavIconUrlKey[]; |
| 15 extern const wchar_t kFocusedKey[]; | 14 extern const wchar_t kFocusedKey[]; |
| 16 extern const wchar_t kFromIndexKey[]; | 15 extern const wchar_t kFromIndexKey[]; |
| 17 extern const wchar_t kHeightKey[]; | 16 extern const wchar_t kHeightKey[]; |
| 18 extern const wchar_t kIdKey[]; | 17 extern const wchar_t kIdKey[]; |
| 19 extern const wchar_t kIndexKey[]; | 18 extern const wchar_t kIndexKey[]; |
| 20 extern const wchar_t kLeftKey[]; | 19 extern const wchar_t kLeftKey[]; |
| 21 extern const wchar_t kNewPositionKey[]; | 20 extern const wchar_t kNewPositionKey[]; |
| 22 extern const wchar_t kNewWindowIdKey[]; | 21 extern const wchar_t kNewWindowIdKey[]; |
| 23 extern const wchar_t kOldPositionKey[]; | 22 extern const wchar_t kOldPositionKey[]; |
| 24 extern const wchar_t kOldWindowIdKey[]; | 23 extern const wchar_t kOldWindowIdKey[]; |
| 25 extern const wchar_t kPageActionIdKey[]; | 24 extern const wchar_t kPopulateKey[]; |
| 26 extern const wchar_t kSelectedKey[]; | 25 extern const wchar_t kSelectedKey[]; |
| 27 extern const wchar_t kStatusKey[]; | 26 extern const wchar_t kStatusKey[]; |
| 28 extern const wchar_t kTabIdKey[]; | 27 extern const wchar_t kTabIdKey[]; |
| 29 extern const wchar_t kTabsKey[]; | 28 extern const wchar_t kTabsKey[]; |
| 30 extern const wchar_t kTabUrlKey[]; | 29 extern const wchar_t kTabUrlKey[]; |
| 31 extern const wchar_t kTitleKey[]; | 30 extern const wchar_t kTitleKey[]; |
| 32 extern const wchar_t kToIndexKey[]; | 31 extern const wchar_t kToIndexKey[]; |
| 33 extern const wchar_t kTopKey[]; | 32 extern const wchar_t kTopKey[]; |
| 34 extern const wchar_t kUrlKey[]; | 33 extern const wchar_t kUrlKey[]; |
| 35 extern const wchar_t kWidthKey[]; | 34 extern const wchar_t kWidthKey[]; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 65 extern const char kCreateTabFunction[]; | 64 extern const char kCreateTabFunction[]; |
| 66 extern const char kUpdateTabFunction[]; | 65 extern const char kUpdateTabFunction[]; |
| 67 extern const char kMoveTabFunction[]; | 66 extern const char kMoveTabFunction[]; |
| 68 extern const char kRemoveTabFunction[]; | 67 extern const char kRemoveTabFunction[]; |
| 69 extern const char kDetectTabLanguageFunction[]; | 68 extern const char kDetectTabLanguageFunction[]; |
| 70 extern const char kCaptureVisibleTabFunction[]; | 69 extern const char kCaptureVisibleTabFunction[]; |
| 71 | 70 |
| 72 }; // namespace extension_tabs_module_constants | 71 }; // namespace extension_tabs_module_constants |
| 73 | 72 |
| 74 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_ | 73 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_ |
| OLD | NEW |