- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / browser / extensions / event_names.h
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
3 // found in the LICENSE file.
4
5 // Constants for the event names sent to extensions.
6
7 #ifndef CHROME_BROWSER_EXTENSIONS_EVENT_NAMES_H_
8 #define CHROME_BROWSER_EXTENSIONS_EVENT_NAMES_H_
9
10 namespace extensions {
11
12 namespace event_names {
13
14 // FileBrowser.
15 extern const char kOnDirectoryChanged[];
16 extern const char kOnFileBrowserMountCompleted[];
17 extern const char kOnFileTransfersUpdated[];
18 extern const char kOnDocumentFeedFetched[];
19 extern const char kOnFileBrowserPreferencesChanged[];
20 extern const char kOnFileBrowserDriveConnectionStatusChanged[];
21 extern const char kOnFileBrowserCopyProgress[];
22
23 // InputMethod.
24 extern const char kOnInputMethodChanged[];
25
26 // Context menus.
27 extern const char kOnContextMenus[];
28
29 // OffscreenTabs.
30 extern const char kOnOffscreenTabUpdated[];
31
32 // Bluetooth.
33 extern const char kBluetoothOnDeviceDiscovered[];
34 extern const char kBluetoothOnDeviceSearchFinished[];
35 extern const char kBluetoothOnDeviceSearchResult[];
36
37 // systemInfo event names.
38 extern const char kOnDisplayChanged[];
39 extern const char kOnStorageAvailableCapacityChanged[];
40
41 // Notifications.
42 extern const char kOnNotificationDisplayed[];
43 extern const char kOnNotificationError[];
44
45 }  // namespace event_names
46
47 }  // namespace extensions
48
49 #endif  // CHROME_BROWSER_EXTENSIONS_EVENT_NAMES_H_