| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 | 9 |
| 10 namespace extension_tabs_module_constants { | 10 namespace extension_tabs_module_constants { |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 extern const char kRemoveWindowFunction[]; | 57 extern const char kRemoveWindowFunction[]; |
| 58 | 58 |
| 59 // Function names, Tabs API. | 59 // Function names, Tabs API. |
| 60 extern const char kGetTabFunction[]; | 60 extern const char kGetTabFunction[]; |
| 61 extern const char kGetSelectedTabFunction[]; | 61 extern const char kGetSelectedTabFunction[]; |
| 62 extern const char kGetAllTabsInWindowFunction[]; | 62 extern const char kGetAllTabsInWindowFunction[]; |
| 63 extern const char kCreateTabFunction[]; | 63 extern const char kCreateTabFunction[]; |
| 64 extern const char kUpdateTabFunction[]; | 64 extern const char kUpdateTabFunction[]; |
| 65 extern const char kMoveTabFunction[]; | 65 extern const char kMoveTabFunction[]; |
| 66 extern const char kRemoveTabFunction[]; | 66 extern const char kRemoveTabFunction[]; |
| 67 extern const char kGetTabLanguageFunction[]; |
| 67 | 68 |
| 68 }; // namespace extension_tabs_module_constants | 69 }; // namespace extension_tabs_module_constants |
| 69 | 70 |
| 70 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_ | 71 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_ |
| OLD | NEW |