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 #include "chrome/browser/extensions/extension_event_names.h" | 5 #include "chrome/browser/extensions/extension_event_names.h" |
6 | 6 |
7 namespace extension_event_names { | 7 namespace extension_event_names { |
8 | 8 |
9 const char kOnTabActivated[] = "tabs.onActivated"; | 9 const char kOnTabActivated[] = "tabs.onActivated"; |
10 const char kOnTabActiveChanged[] = "tabs.onActiveChanged"; | 10 const char kOnTabActiveChanged[] = "tabs.onActiveChanged"; |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 | 53 |
54 const char kOnTerminalProcessOutput[] = "terminalPrivate.onProcessOutput"; | 54 const char kOnTerminalProcessOutput[] = "terminalPrivate.onProcessOutput"; |
55 | 55 |
56 const char kOnOffscreenTabUpdated[] = "experimental.offscreenTabs.onUpdated"; | 56 const char kOnOffscreenTabUpdated[] = "experimental.offscreenTabs.onUpdated"; |
57 | 57 |
58 #if defined(OS_CHROMEOS) | 58 #if defined(OS_CHROMEOS) |
59 const char kBluetoothOnAvailabilityChanged[] = | 59 const char kBluetoothOnAvailabilityChanged[] = |
60 "experimental.bluetooth.onAvailabilityChanged"; | 60 "experimental.bluetooth.onAvailabilityChanged"; |
61 const char kBluetoothOnDeviceDiscovered[] = | 61 const char kBluetoothOnDeviceDiscovered[] = |
62 "experimental.bluetooth.onDeviceDiscovered"; | 62 "experimental.bluetooth.onDeviceDiscovered"; |
| 63 const char kBluetoothOnDiscoveringChanged[] = |
| 64 "experimental.bluetooth.onDiscoveringChanged"; |
63 const char kBluetoothOnPowerChanged[] = | 65 const char kBluetoothOnPowerChanged[] = |
64 "experimental.bluetooth.onPowerChanged"; | 66 "experimental.bluetooth.onPowerChanged"; |
65 #endif | 67 #endif |
66 | 68 |
67 } // namespace extension_event_names | 69 } // namespace extension_event_names |
OLD | NEW |