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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 const char kGetTabFunction[] = "tabs.get"; | 55 const char kGetTabFunction[] = "tabs.get"; |
56 const char kGetSelectedTabFunction[] = "tabs.getSelected"; | 56 const char kGetSelectedTabFunction[] = "tabs.getSelected"; |
57 const char kGetAllTabsInWindowFunction[] = "tabs.getAllInWindow"; | 57 const char kGetAllTabsInWindowFunction[] = "tabs.getAllInWindow"; |
58 const char kCreateTabFunction[] = "tabs.create"; | 58 const char kCreateTabFunction[] = "tabs.create"; |
59 const char kUpdateTabFunction[] = "tabs.update"; | 59 const char kUpdateTabFunction[] = "tabs.update"; |
60 const char kMoveTabFunction[] = "tabs.move"; | 60 const char kMoveTabFunction[] = "tabs.move"; |
61 const char kRemoveTabFunction[] = "tabs.remove"; | 61 const char kRemoveTabFunction[] = "tabs.remove"; |
62 const char kDetectTabLanguageFunction[] = "tabs.detectLanguage"; | 62 const char kDetectTabLanguageFunction[] = "tabs.detectLanguage"; |
63 const char kCaptureVisibleTabFunction[] = "tabs.captureVisibleTab"; | 63 const char kCaptureVisibleTabFunction[] = "tabs.captureVisibleTab"; |
64 | 64 |
| 65 const char kExecuteScriptWithUrlFunction[] = "extension.executeScriptWithUrl"; |
| 66 |
65 } // namespace extension_tabs_module_constants | 67 } // namespace extension_tabs_module_constants |
OLD | NEW |