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

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

Issue 8467012: Refactor proxy handling for ChromeOS to not go through the CrosSettings interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Centralized the proxy change notification. Created 9 years, 1 month 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/public/browser/notification_types.h" 9 #include "content/public/browser/notification_types.h"
10 10
(...skipping 807 matching lines...) Expand 10 before | Expand all | Expand 10 after
818 NOTIFICATION_OWNER_KEY_FETCH_ATTEMPT_FAILED, 818 NOTIFICATION_OWNER_KEY_FETCH_ATTEMPT_FAILED,
819 819
820 // Sent after UserManager checked ownership status of logged in user. 820 // Sent after UserManager checked ownership status of logged in user.
821 NOTIFICATION_OWNERSHIP_CHECKED, 821 NOTIFICATION_OWNERSHIP_CHECKED,
822 822
823 // This is sent to a ChromeOS settings observer when a system setting is 823 // This is sent to a ChromeOS settings observer when a system setting is
824 // changed. The source is the CrosSettings and the details a std::string of 824 // changed. The source is the CrosSettings and the details a std::string of
825 // the changed setting. 825 // the changed setting.
826 NOTIFICATION_SYSTEM_SETTING_CHANGED, 826 NOTIFICATION_SYSTEM_SETTING_CHANGED,
827 827
828 // This notification is sent when the current network has been changed from
829 // the UI and is used to update any proxy configuration windows that might be
830 // opened at that time.
831 NOTIFICATION_CURRENT_NETWORK_CHANGED,
kuan 2011/11/08 14:45:25 based on ur notification name and comments, i thin
pastarmovj 2011/11/09 17:51:53 No such notification anymore. But thanks for the c
832
828 // Sent by SIM unlock dialog when it has finished with the process of 833 // Sent by SIM unlock dialog when it has finished with the process of
829 // updating RequirePin setting. RequirePin setting might have been changed 834 // updating RequirePin setting. RequirePin setting might have been changed
830 // to a new value or update might have been canceled. 835 // to a new value or update might have been canceled.
831 // In either case notification is sent and details contain a bool 836 // In either case notification is sent and details contain a bool
832 // that represents current value. 837 // that represents current value.
833 NOTIFICATION_REQUIRE_PIN_SETTING_CHANGE_ENDED, 838 NOTIFICATION_REQUIRE_PIN_SETTING_CHANGE_ENDED,
834 839
835 // Sent by SIM unlock dialog when it has finished the EnterPin or 840 // Sent by SIM unlock dialog when it has finished the EnterPin or
836 // EnterPuk dialog, either because the user cancelled, or entered a 841 // EnterPuk dialog, either because the user cancelled, or entered a
837 // PIN or PUK. 842 // PIN or PUK.
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
958 // Currently only Content and Chrome define and use notifications. 963 // Currently only Content and Chrome define and use notifications.
959 // Custom notifications not belonging to Content and Chrome should start 964 // Custom notifications not belonging to Content and Chrome should start
960 // from here. 965 // from here.
961 NOTIFICATION_CHROME_END, 966 NOTIFICATION_CHROME_END,
962 }; 967 };
963 968
964 } // namespace chrome 969 } // namespace chrome
965 970
966 971
967 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ 972 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698