Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Side by Side Diff: chrome/browser/extensions/extension_event_names.cc

Issue 10807087: Bluetooth API: add discovering changed events (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698