| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 // Value consts. | 55 // Value consts. |
| 56 extern const char kCanOnlyMoveTabsWithinNormalWindowsError[]; | 56 extern const char kCanOnlyMoveTabsWithinNormalWindowsError[]; |
| 57 extern const char kCanOnlyMoveTabsWithinSameProfileError[]; | 57 extern const char kCanOnlyMoveTabsWithinSameProfileError[]; |
| 58 extern const char kFormatValueJpeg[]; | 58 extern const char kFormatValueJpeg[]; |
| 59 extern const char kFormatValuePng[]; | 59 extern const char kFormatValuePng[]; |
| 60 extern const char kMimeTypeJpeg[]; | 60 extern const char kMimeTypeJpeg[]; |
| 61 extern const char kMimeTypePng[]; | 61 extern const char kMimeTypePng[]; |
| 62 extern const char kShowStateValueNormal[]; | 62 extern const char kShowStateValueNormal[]; |
| 63 extern const char kShowStateValueMinimized[]; | 63 extern const char kShowStateValueMinimized[]; |
| 64 extern const char kShowStateValueMaximized[]; | 64 extern const char kShowStateValueMaximized[]; |
| 65 extern const char kShowStateValueFullscreen[]; |
| 65 extern const char kStatusValueComplete[]; | 66 extern const char kStatusValueComplete[]; |
| 66 extern const char kStatusValueLoading[]; | 67 extern const char kStatusValueLoading[]; |
| 67 extern const char kWindowTypeValueNormal[]; | 68 extern const char kWindowTypeValueNormal[]; |
| 68 extern const char kWindowTypeValuePopup[]; | 69 extern const char kWindowTypeValuePopup[]; |
| 69 extern const char kWindowTypeValuePanel[]; | 70 extern const char kWindowTypeValuePanel[]; |
| 70 extern const char kWindowTypeValueApp[]; | 71 extern const char kWindowTypeValueApp[]; |
| 71 | 72 |
| 72 // Error messages. | 73 // Error messages. |
| 73 extern const char kNoCrashBrowserError[]; | 74 extern const char kNoCrashBrowserError[]; |
| 74 extern const char kNoCurrentWindowError[]; | 75 extern const char kNoCurrentWindowError[]; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 90 extern const char kInvalidWindowStateError[]; | 91 extern const char kInvalidWindowStateError[]; |
| 91 | 92 |
| 92 extern const char kNoCodeOrFileToExecuteError[]; | 93 extern const char kNoCodeOrFileToExecuteError[]; |
| 93 extern const char kMoreThanOneValuesError[]; | 94 extern const char kMoreThanOneValuesError[]; |
| 94 extern const char kLoadFileError[]; | 95 extern const char kLoadFileError[]; |
| 95 extern const char kCannotDetermineLanguageOfUnloadedTab[]; | 96 extern const char kCannotDetermineLanguageOfUnloadedTab[]; |
| 96 | 97 |
| 97 }; // namespace extension_tabs_module_constants | 98 }; // namespace extension_tabs_module_constants |
| 98 | 99 |
| 99 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_ | 100 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_ |
| OLD | NEW |