| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 extern const char kStatusValueLoading[]; | 70 extern const char kStatusValueLoading[]; |
| 71 extern const char kWindowTypeValueNormal[]; | 71 extern const char kWindowTypeValueNormal[]; |
| 72 extern const char kWindowTypeValuePopup[]; | 72 extern const char kWindowTypeValuePopup[]; |
| 73 extern const char kWindowTypeValuePanel[]; | 73 extern const char kWindowTypeValuePanel[]; |
| 74 extern const char kWindowTypeValueDetachedPanel[]; | 74 extern const char kWindowTypeValueDetachedPanel[]; |
| 75 extern const char kWindowTypeValueApp[]; | 75 extern const char kWindowTypeValueApp[]; |
| 76 extern const char kWindowTypeValueDevTools[]; | 76 extern const char kWindowTypeValueDevTools[]; |
| 77 | 77 |
| 78 // Error messages. | 78 // Error messages. |
| 79 extern const char kCannotZoomDisabledTabError[]; | 79 extern const char kCannotZoomDisabledTabError[]; |
| 80 extern const char kFrameNotFoundError[]; |
| 80 extern const char kNoCrashBrowserError[]; | 81 extern const char kNoCrashBrowserError[]; |
| 81 extern const char kNoCurrentWindowError[]; | 82 extern const char kNoCurrentWindowError[]; |
| 82 extern const char kNoLastFocusedWindowError[]; | 83 extern const char kNoLastFocusedWindowError[]; |
| 83 extern const char kPerOriginOnlyInAutomaticError[]; | 84 extern const char kPerOriginOnlyInAutomaticError[]; |
| 84 extern const char kWindowNotFoundError[]; | 85 extern const char kWindowNotFoundError[]; |
| 85 extern const char kTabIndexNotFoundError[]; | 86 extern const char kTabIndexNotFoundError[]; |
| 86 extern const char kTabNotFoundError[]; | 87 extern const char kTabNotFoundError[]; |
| 87 extern const char kTabStripNotEditableError[]; | 88 extern const char kTabStripNotEditableError[]; |
| 88 extern const char kNoHighlightedTabError[]; | 89 extern const char kNoHighlightedTabError[]; |
| 89 extern const char kNoSelectedTabError[]; | 90 extern const char kNoSelectedTabError[]; |
| 90 extern const char kIncognitoModeIsDisabled[]; | 91 extern const char kIncognitoModeIsDisabled[]; |
| 91 extern const char kIncognitoModeIsForced[]; | 92 extern const char kIncognitoModeIsForced[]; |
| 92 extern const char kURLsNotAllowedInIncognitoError[]; | 93 extern const char kURLsNotAllowedInIncognitoError[]; |
| 93 extern const char kInvalidUrlError[]; | 94 extern const char kInvalidUrlError[]; |
| 94 extern const char kNotImplementedError[]; | 95 extern const char kNotImplementedError[]; |
| 95 extern const char kSupportedInWindowsOnlyError[]; | 96 extern const char kSupportedInWindowsOnlyError[]; |
| 96 extern const char kInvalidWindowTypeError[]; | 97 extern const char kInvalidWindowTypeError[]; |
| 97 extern const char kInvalidWindowStateError[]; | 98 extern const char kInvalidWindowStateError[]; |
| 98 extern const char kScreenshotsDisabled[]; | 99 extern const char kScreenshotsDisabled[]; |
| 99 extern const char kCannotUpdateMuteDisabled[]; | 100 extern const char kCannotUpdateMuteDisabled[]; |
| 100 extern const char kCannotUpdateMuteCaptured[]; | 101 extern const char kCannotUpdateMuteCaptured[]; |
| 101 | 102 |
| 102 extern const char kCannotDetermineLanguageOfUnloadedTab[]; | 103 extern const char kCannotDetermineLanguageOfUnloadedTab[]; |
| 103 | 104 |
| 104 }; // namespace tabs_constants | 105 }; // namespace tabs_constants |
| 105 }; // namespace extensions | 106 }; // namespace extensions |
| 106 | 107 |
| 107 #endif // CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_CONSTANTS_H_ | 108 #endif // CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_CONSTANTS_H_ |
| OLD | NEW |