| 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_API_TABS_TABS_CONSTANTS_H_ | 7 #ifndef CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_CONSTANTS_H_ |
| 8 #define CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_CONSTANTS_H_ | 8 #define CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_CONSTANTS_H_ |
| 9 | 9 |
| 10 namespace extensions { | 10 namespace extensions { |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 extern const char kWindowClosing[]; | 51 extern const char kWindowClosing[]; |
| 52 extern const char kWindowIdKey[]; | 52 extern const char kWindowIdKey[]; |
| 53 extern const char kWindowTypeKey[]; | 53 extern const char kWindowTypeKey[]; |
| 54 extern const char kWindowTypeLongKey[]; | 54 extern const char kWindowTypeLongKey[]; |
| 55 extern const char kZoomSettingsMode[]; | 55 extern const char kZoomSettingsMode[]; |
| 56 extern const char kZoomSettingsScope[]; | 56 extern const char kZoomSettingsScope[]; |
| 57 | 57 |
| 58 // Value consts. | 58 // Value consts. |
| 59 extern const char kCanOnlyMoveTabsWithinNormalWindowsError[]; | 59 extern const char kCanOnlyMoveTabsWithinNormalWindowsError[]; |
| 60 extern const char kCanOnlyMoveTabsWithinSameProfileError[]; | 60 extern const char kCanOnlyMoveTabsWithinSameProfileError[]; |
| 61 extern const char kFormatValueJpeg[]; | |
| 62 extern const char kFormatValuePng[]; | |
| 63 extern const char kMimeTypeJpeg[]; | |
| 64 extern const char kMimeTypePng[]; | |
| 65 extern const char kShowStateValueNormal[]; | 61 extern const char kShowStateValueNormal[]; |
| 66 extern const char kShowStateValueMinimized[]; | 62 extern const char kShowStateValueMinimized[]; |
| 67 extern const char kShowStateValueMaximized[]; | 63 extern const char kShowStateValueMaximized[]; |
| 68 extern const char kShowStateValueFullscreen[]; | 64 extern const char kShowStateValueFullscreen[]; |
| 69 extern const char kStatusValueComplete[]; | 65 extern const char kStatusValueComplete[]; |
| 70 extern const char kStatusValueLoading[]; | 66 extern const char kStatusValueLoading[]; |
| 71 extern const char kWindowTypeValueNormal[]; | 67 extern const char kWindowTypeValueNormal[]; |
| 72 extern const char kWindowTypeValuePopup[]; | 68 extern const char kWindowTypeValuePopup[]; |
| 73 extern const char kWindowTypeValuePanel[]; | 69 extern const char kWindowTypeValuePanel[]; |
| 74 extern const char kWindowTypeValueDetachedPanel[]; | 70 extern const char kWindowTypeValueDetachedPanel[]; |
| (...skipping 24 matching lines...) Expand all Loading... |
| 99 | 95 |
| 100 extern const char kNoCodeOrFileToExecuteError[]; | 96 extern const char kNoCodeOrFileToExecuteError[]; |
| 101 extern const char kMoreThanOneValuesError[]; | 97 extern const char kMoreThanOneValuesError[]; |
| 102 extern const char kLoadFileError[]; | 98 extern const char kLoadFileError[]; |
| 103 extern const char kCannotDetermineLanguageOfUnloadedTab[]; | 99 extern const char kCannotDetermineLanguageOfUnloadedTab[]; |
| 104 | 100 |
| 105 }; // namespace tabs_constants | 101 }; // namespace tabs_constants |
| 106 }; // namespace extensions | 102 }; // namespace extensions |
| 107 | 103 |
| 108 #endif // CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_CONSTANTS_H_ | 104 #endif // CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_CONSTANTS_H_ |
| OLD | NEW |