| 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 28 matching lines...) Expand all Loading... |
| 39 extern const char kTopKey[]; | 39 extern const char kTopKey[]; |
| 40 extern const char kUrlKey[]; | 40 extern const char kUrlKey[]; |
| 41 extern const char kWindowClosing[]; | 41 extern const char kWindowClosing[]; |
| 42 extern const char kWidthKey[]; | 42 extern const char kWidthKey[]; |
| 43 extern const char kWindowIdKey[]; | 43 extern const char kWindowIdKey[]; |
| 44 extern const char kIncognitoKey[]; | 44 extern const char kIncognitoKey[]; |
| 45 extern const char kWindowTypeKey[]; | 45 extern const char kWindowTypeKey[]; |
| 46 | 46 |
| 47 // Value consts. | 47 // Value consts. |
| 48 extern const char kCanOnlyMoveTabsWithinNormalWindowsError[]; | 48 extern const char kCanOnlyMoveTabsWithinNormalWindowsError[]; |
| 49 extern const char kCanOnlyMoveTabsWithinSameProfileError[]; |
| 49 extern const char kFormatValueJpeg[]; | 50 extern const char kFormatValueJpeg[]; |
| 50 extern const char kFormatValuePng[]; | 51 extern const char kFormatValuePng[]; |
| 51 extern const char kMimeTypeJpeg[]; | 52 extern const char kMimeTypeJpeg[]; |
| 52 extern const char kMimeTypePng[]; | 53 extern const char kMimeTypePng[]; |
| 53 extern const char kStatusValueComplete[]; | 54 extern const char kStatusValueComplete[]; |
| 54 extern const char kStatusValueLoading[]; | 55 extern const char kStatusValueLoading[]; |
| 55 extern const char kWindowTypeValueNormal[]; | 56 extern const char kWindowTypeValueNormal[]; |
| 56 extern const char kWindowTypeValuePopup[]; | 57 extern const char kWindowTypeValuePopup[]; |
| 57 extern const char kWindowTypeValueApp[]; | 58 extern const char kWindowTypeValueApp[]; |
| 58 | 59 |
| (...skipping 10 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 |