| 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 { |
| 11 namespace tabs_constants { | 11 namespace tabs_constants { |
| 12 | 12 |
| 13 // Keys used in serializing tab data & events. | 13 // Keys used in serializing tab data & events. |
| 14 extern const char kActiveKey[]; | 14 extern const char kActiveKey[]; |
| 15 extern const char kAllFramesKey[]; | 15 extern const char kAllFramesKey[]; |
| 16 extern const char kAlwaysOnTopKey[]; | 16 extern const char kAlwaysOnTopKey[]; |
| 17 extern const char kBypassCache[]; | 17 extern const char kBypassCache[]; |
| 18 extern const char kCodeKey[]; | 18 extern const char kCodeKey[]; |
| 19 extern const char kCurrentWindowKey[]; | 19 extern const char kCurrentWindowKey[]; |
| 20 extern const char kDrawAttentionKey[]; | |
| 21 extern const char kFaviconUrlKey[]; | 20 extern const char kFaviconUrlKey[]; |
| 22 extern const char kFileKey[]; | 21 extern const char kFileKey[]; |
| 23 extern const char kFocusedKey[]; | 22 extern const char kFocusedKey[]; |
| 24 extern const char kFormatKey[]; | 23 extern const char kFormatKey[]; |
| 25 extern const char kFromIndexKey[]; | 24 extern const char kFromIndexKey[]; |
| 26 extern const char kHeightKey[]; | 25 extern const char kHeightKey[]; |
| 27 extern const char kIdKey[]; | 26 extern const char kIdKey[]; |
| 28 extern const char kIndexKey[]; | 27 extern const char kIndexKey[]; |
| 29 extern const char kLastFocusedWindowKey[]; | 28 extern const char kLastFocusedWindowKey[]; |
| 30 extern const char kLeftKey[]; | 29 extern const char kLeftKey[]; |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 | 95 |
| 97 extern const char kNoCodeOrFileToExecuteError[]; | 96 extern const char kNoCodeOrFileToExecuteError[]; |
| 98 extern const char kMoreThanOneValuesError[]; | 97 extern const char kMoreThanOneValuesError[]; |
| 99 extern const char kLoadFileError[]; | 98 extern const char kLoadFileError[]; |
| 100 extern const char kCannotDetermineLanguageOfUnloadedTab[]; | 99 extern const char kCannotDetermineLanguageOfUnloadedTab[]; |
| 101 | 100 |
| 102 }; // namespace tabs_constants | 101 }; // namespace tabs_constants |
| 103 }; // namespace extensions | 102 }; // namespace extensions |
| 104 | 103 |
| 105 #endif // CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_CONSTANTS_H_ | 104 #endif // CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_CONSTANTS_H_ |
| OLD | NEW |