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

Side by Side Diff: chrome/common/chrome_notification_types.h

Issue 14230005: Remove all code for chrome.experimental.speechInput extension API (Closed) Base URL: https://src.chromium.org/svn/trunk/src/
Patch Set: rebase Created 7 years, 8 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
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/common/extensions/api/experimental_speech_input.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 565 matching lines...) Expand 10 before | Expand all | Expand 10 after
1237 // Note:- 1228 // Note:-
1238 // Currently only Content and Chrome define and use notifications. 1229 // Currently only Content and Chrome define and use notifications.
1239 // Custom notifications not belonging to Content and Chrome should start 1230 // Custom notifications not belonging to Content and Chrome should start
1240 // from here. 1231 // from here.
1241 NOTIFICATION_CHROME_END, 1232 NOTIFICATION_CHROME_END,
1242 }; 1233 };
1243 1234
1244 } // namespace chrome 1235 } // namespace chrome
1245 1236
1246 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ 1237 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/common/extensions/api/experimental_speech_input.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698