| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 #ifndef CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ | 5 #ifndef CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ |
| 6 #define CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ | 6 #define CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ |
| 7 | 7 |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "content/public/browser/notification_types.h" | 9 #include "content/public/browser/notification_types.h" |
| 10 | 10 |
| (...skipping 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 643 NOTIFICATION_EXTENSION_OMNIBOX_SUGGESTIONS_READY, | 643 NOTIFICATION_EXTENSION_OMNIBOX_SUGGESTIONS_READY, |
| 644 | 644 |
| 645 // Sent when the user accepts the input in an extension omnibox keyword | 645 // Sent when the user accepts the input in an extension omnibox keyword |
| 646 // session. The source is the profile. | 646 // session. The source is the profile. |
| 647 NOTIFICATION_EXTENSION_OMNIBOX_INPUT_ENTERED, | 647 NOTIFICATION_EXTENSION_OMNIBOX_INPUT_ENTERED, |
| 648 | 648 |
| 649 // Sent when an omnibox extension has updated the default suggestion. The | 649 // Sent when an omnibox extension has updated the default suggestion. The |
| 650 // source is the profile. | 650 // source is the profile. |
| 651 NOTIFICATION_EXTENSION_OMNIBOX_DEFAULT_SUGGESTION_CHANGED, | 651 NOTIFICATION_EXTENSION_OMNIBOX_DEFAULT_SUGGESTION_CHANGED, |
| 652 | 652 |
| 653 // Sent when a recording session for speech input has started. | |
| 654 NOTIFICATION_EXTENSION_SPEECH_INPUT_RECORDING_STARTED, | |
| 655 | |
| 656 // Sent when a recording session for speech input has stopped. | |
| 657 NOTIFICATION_EXTENSION_SPEECH_INPUT_RECORDING_STOPPED, | |
| 658 | |
| 659 // Sent when a recording session for speech input has failed. | |
| 660 NOTIFICATION_EXTENSION_SPEECH_INPUT_FAILED, | |
| 661 | |
| 662 // Sent when the extension updater starts checking for updates to installed | 653 // Sent when the extension updater starts checking for updates to installed |
| 663 // extensions. The source is a Profile, and there are no details. | 654 // extensions. The source is a Profile, and there are no details. |
| 664 NOTIFICATION_EXTENSION_UPDATING_STARTED, | 655 NOTIFICATION_EXTENSION_UPDATING_STARTED, |
| 665 | 656 |
| 666 // The extension updater found an update and will attempt to download and | 657 // The extension updater found an update and will attempt to download and |
| 667 // install it. The source is a Profile, and the details are an | 658 // install it. The source is a Profile, and the details are an |
| 668 // extensions::UpdateDetails object with the extension id and version of the | 659 // extensions::UpdateDetails object with the extension id and version of the |
| 669 // found update. | 660 // found update. |
| 670 NOTIFICATION_EXTENSION_UPDATE_FOUND, | 661 NOTIFICATION_EXTENSION_UPDATE_FOUND, |
| 671 | 662 |
| (...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1228 // Note:- | 1219 // Note:- |
| 1229 // Currently only Content and Chrome define and use notifications. | 1220 // Currently only Content and Chrome define and use notifications. |
| 1230 // Custom notifications not belonging to Content and Chrome should start | 1221 // Custom notifications not belonging to Content and Chrome should start |
| 1231 // from here. | 1222 // from here. |
| 1232 NOTIFICATION_CHROME_END, | 1223 NOTIFICATION_CHROME_END, |
| 1233 }; | 1224 }; |
| 1234 | 1225 |
| 1235 } // namespace chrome | 1226 } // namespace chrome |
| 1236 | 1227 |
| 1237 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ | 1228 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ |
| OLD | NEW |