| 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 #include "chrome/browser/extensions/extension_tabs_module_constants.h" | 5 #include "chrome/browser/extensions/extension_tabs_module_constants.h" |
| 6 | 6 |
| 7 namespace extension_tabs_module_constants { | 7 namespace extension_tabs_module_constants { |
| 8 | 8 |
| 9 const wchar_t kDataKey[] = L"data"; | 9 const wchar_t kDataKey[] = L"data"; |
| 10 const wchar_t kFavIconUrlKey[] = L"favIconUrl"; | 10 const wchar_t kFavIconUrlKey[] = L"favIconUrl"; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 const char kUpdateWindowFunction[] = "UpdateWindow"; | 49 const char kUpdateWindowFunction[] = "UpdateWindow"; |
| 50 const char kRemoveWindowFunction[] = "RemoveWindow"; | 50 const char kRemoveWindowFunction[] = "RemoveWindow"; |
| 51 | 51 |
| 52 const char kGetTabFunction[] = "GetTab"; | 52 const char kGetTabFunction[] = "GetTab"; |
| 53 const char kGetSelectedTabFunction[] = "GetSelectedTab"; | 53 const char kGetSelectedTabFunction[] = "GetSelectedTab"; |
| 54 const char kGetAllTabsInWindowFunction[] = "GetAllTabsInWindow"; | 54 const char kGetAllTabsInWindowFunction[] = "GetAllTabsInWindow"; |
| 55 const char kCreateTabFunction[] = "CreateTab"; | 55 const char kCreateTabFunction[] = "CreateTab"; |
| 56 const char kUpdateTabFunction[] = "UpdateTab"; | 56 const char kUpdateTabFunction[] = "UpdateTab"; |
| 57 const char kMoveTabFunction[] = "MoveTab"; | 57 const char kMoveTabFunction[] = "MoveTab"; |
| 58 const char kRemoveTabFunction[] = "RemoveTab"; | 58 const char kRemoveTabFunction[] = "RemoveTab"; |
| 59 | 59 const char kGetTabLanguageFunction[] = "GetTabLanguage"; |
| 60 | 60 |
| 61 } // namespace extension_tabs_module_constants | 61 } // namespace extension_tabs_module_constants |
| OLD | NEW |