| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 | 51 |
| 52 const char kOnSettingsChanged[] = "storage.onChanged"; | 52 const char kOnSettingsChanged[] = "storage.onChanged"; |
| 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[] = |
| 62 "experimental.bluetooth.onDeviceDiscovered_"; |
| 61 const char kBluetoothOnPowerChanged[] = | 63 const char kBluetoothOnPowerChanged[] = |
| 62 "experimental.bluetooth.onPowerChanged"; | 64 "experimental.bluetooth.onPowerChanged"; |
| 63 #endif | 65 #endif |
| 64 | 66 |
| 65 } // namespace extension_event_names | 67 } // namespace extension_event_names |
| OLD | NEW |