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