| 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/event_names.h" | 5 #include "chrome/browser/extensions/event_names.h" |
| 6 | 6 |
| 7 namespace extensions { | 7 namespace extensions { |
| 8 | 8 |
| 9 namespace event_names { | 9 namespace event_names { |
| 10 | 10 |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 const char kOnNotificationClosed[] = "notifications.onClosed"; | 93 const char kOnNotificationClosed[] = "notifications.onClosed"; |
| 94 const char kOnNotificationClicked[] = "notifications.onClicked"; | 94 const char kOnNotificationClicked[] = "notifications.onClicked"; |
| 95 const char kOnNotificationButtonClicked[] = "notifications.onButtonClicked"; | 95 const char kOnNotificationButtonClicked[] = "notifications.onButtonClicked"; |
| 96 | 96 |
| 97 const char kOnNetworksChanged[] = "networkingPrivate.onNetworksChanged"; | 97 const char kOnNetworksChanged[] = "networkingPrivate.onNetworksChanged"; |
| 98 const char kOnNetworkListChanged[] = "networkingPrivate.onNetworkListChanged"; | 98 const char kOnNetworkListChanged[] = "networkingPrivate.onNetworkListChanged"; |
| 99 | 99 |
| 100 const char kOnLaunched[] = "app.runtime.onLaunched"; | 100 const char kOnLaunched[] = "app.runtime.onLaunched"; |
| 101 const char kOnRestarted[] = "app.runtime.onRestarted"; | 101 const char kOnRestarted[] = "app.runtime.onRestarted"; |
| 102 | 102 |
| 103 const char kOnAudioDeviceChanged[] = "audio.onDeviceChanged"; |
| 104 |
| 103 } // namespace event_names | 105 } // namespace event_names |
| 104 | 106 |
| 105 } // namespace extensions | 107 } // namespace extensions |
| OLD | NEW |