| 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 // 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 12 matching lines...) Expand all Loading... |
| 23 extern const char kIndexKey[]; | 23 extern const char kIndexKey[]; |
| 24 extern const char kLeftKey[]; | 24 extern const char kLeftKey[]; |
| 25 extern const char kNewPositionKey[]; | 25 extern const char kNewPositionKey[]; |
| 26 extern const char kNewWindowIdKey[]; | 26 extern const char kNewWindowIdKey[]; |
| 27 extern const char kOldPositionKey[]; | 27 extern const char kOldPositionKey[]; |
| 28 extern const char kOldWindowIdKey[]; | 28 extern const char kOldWindowIdKey[]; |
| 29 extern const char kPinnedKey[]; | 29 extern const char kPinnedKey[]; |
| 30 extern const char kPopulateKey[]; | 30 extern const char kPopulateKey[]; |
| 31 extern const char kQualityKey[]; | 31 extern const char kQualityKey[]; |
| 32 extern const char kSelectedKey[]; | 32 extern const char kSelectedKey[]; |
| 33 extern const char kSocketAddressKey[]; |
| 33 extern const char kStatusKey[]; | 34 extern const char kStatusKey[]; |
| 34 extern const char kTabIdKey[]; | 35 extern const char kTabIdKey[]; |
| 35 extern const char kTabsKey[]; | 36 extern const char kTabsKey[]; |
| 36 extern const char kTabUrlKey[]; | 37 extern const char kTabUrlKey[]; |
| 37 extern const char kTitleKey[]; | 38 extern const char kTitleKey[]; |
| 38 extern const char kToIndexKey[]; | 39 extern const char kToIndexKey[]; |
| 39 extern const char kTopKey[]; | 40 extern const char kTopKey[]; |
| 40 extern const char kUrlKey[]; | 41 extern const char kUrlKey[]; |
| 41 extern const char kWindowClosing[]; | 42 extern const char kWindowClosing[]; |
| 42 extern const char kWidthKey[]; | 43 extern const char kWidthKey[]; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 69 extern const char kSupportedInWindowsOnlyError[]; | 70 extern const char kSupportedInWindowsOnlyError[]; |
| 70 | 71 |
| 71 extern const char kNoCodeOrFileToExecuteError[]; | 72 extern const char kNoCodeOrFileToExecuteError[]; |
| 72 extern const char kMoreThanOneValuesError[]; | 73 extern const char kMoreThanOneValuesError[]; |
| 73 extern const char kLoadFileError[]; | 74 extern const char kLoadFileError[]; |
| 74 extern const char kCannotDetermineLanguageOfUnloadedTab[]; | 75 extern const char kCannotDetermineLanguageOfUnloadedTab[]; |
| 75 | 76 |
| 76 }; // namespace extension_tabs_module_constants | 77 }; // namespace extension_tabs_module_constants |
| 77 | 78 |
| 78 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_ | 79 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_ |
| OLD | NEW |