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

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

Issue 7776001: ntp4: improved app install, try 2 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove #app-id altogether Created 9 years, 3 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #pragma once 7 #pragma once
8 8
9 #include "content/common/content_notification_types.h" 9 #include "content/common/content_notification_types.h"
10 10
(...skipping 823 matching lines...) Expand 10 before | Expand all | Expand 10 after
834 // change type (ADD, UPDATE, or REMOVE) as well as the 834 // change type (ADD, UPDATE, or REMOVE) as well as the
835 // |webkit_glue::PasswordForm|s that were affected. 835 // |webkit_glue::PasswordForm|s that were affected.
836 NOTIFICATION_LOGINS_CHANGED, 836 NOTIFICATION_LOGINS_CHANGED,
837 837
838 // Sent when an import process has ended. 838 // Sent when an import process has ended.
839 NOTIFICATION_IMPORT_FINISHED, 839 NOTIFICATION_IMPORT_FINISHED,
840 840
841 // Sent when the applications in the NTP app launcher have been reordered. 841 // Sent when the applications in the NTP app launcher have been reordered.
842 NOTIFICATION_EXTENSION_LAUNCHER_REORDERED, 842 NOTIFICATION_EXTENSION_LAUNCHER_REORDERED,
843 843
844 // Sent when an app is installed and an NTP has been shown. Source is the
845 // TabContents that was shown, and Details is the string ID of the extension
846 // which was installed.
847 NOTIFICATION_APP_INSTALLED_TO_NTP,
848
844 #if defined(OS_CHROMEOS) 849 #if defined(OS_CHROMEOS)
845 // Sent when WebSocketProxy started accepting connections. 850 // Sent when WebSocketProxy started accepting connections.
846 NOTIFICATION_WEB_SOCKET_PROXY_STARTED, 851 NOTIFICATION_WEB_SOCKET_PROXY_STARTED,
847 #endif 852 #endif
848 853
849 // Sent when a new web store promo has been loaded. 854 // Sent when a new web store promo has been loaded.
850 NOTIFICATION_WEB_STORE_PROMO_LOADED, 855 NOTIFICATION_WEB_STORE_PROMO_LOADED,
851 856
852 #if defined(TOUCH_UI) 857 #if defined(TOUCH_UI)
853 // Sent when the keyboard visibility has changed. Used for testing purposes 858 // Sent when the keyboard visibility has changed. Used for testing purposes
(...skipping 27 matching lines...) Expand all
881 // Currently only Content and Chrome define and use notifications. 886 // Currently only Content and Chrome define and use notifications.
882 // Custom notifications not belonging to Content and Chrome should start 887 // Custom notifications not belonging to Content and Chrome should start
883 // from here. 888 // from here.
884 NOTIFICATION_CHROME_END, 889 NOTIFICATION_CHROME_END,
885 }; 890 };
886 891
887 } // namespace chrome 892 } // namespace chrome
888 893
889 894
890 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ 895 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698