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 #ifndef CHROME_BROWSER_CHROMEOS_STATUS_DATA_PROMO_NOTIFICATION_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_STATUS_DATA_PROMO_NOTIFICATION_H_ |
6 #define CHROME_BROWSER_CHROMEOS_STATUS_DATA_PROMO_NOTIFICATION_H_ | 6 #define CHROME_BROWSER_CHROMEOS_STATUS_DATA_PROMO_NOTIFICATION_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
10 #include "chromeos/network/network_state_handler_observer.h" | 10 #include "chromeos/network/network_state_handler_observer.h" |
(...skipping 16 matching lines...) Expand all Loading... |
27 DataPromoNotification(); | 27 DataPromoNotification(); |
28 ~DataPromoNotification() override; | 28 ~DataPromoNotification() override; |
29 | 29 |
30 static void RegisterPrefs(PrefRegistrySimple* registry); | 30 static void RegisterPrefs(PrefRegistrySimple* registry); |
31 | 31 |
32 private: | 32 private: |
33 // NetworkStateHandlerObserver | 33 // NetworkStateHandlerObserver |
34 void NetworkPropertiesUpdated(const NetworkState* network) override; | 34 void NetworkPropertiesUpdated(const NetworkState* network) override; |
35 void DefaultNetworkChanged(const NetworkState* network) override; | 35 void DefaultNetworkChanged(const NetworkState* network) override; |
36 | 36 |
37 // Shows 3G promo notification if needed. | 37 // Shows 3G promo notification if needed. |hotkey_debug| indicates that the |
38 void ShowOptionalMobileDataPromoNotification(); | 38 // NetworkPropertiesUpdated notification was generated by a debugging hotkey. |
| 39 void ShowOptionalMobileDataPromoNotification(bool hotkey_debug); |
| 40 |
| 41 // Show notification prompting user to install Data Saver extension. |
| 42 bool ShowDataSaverNotification(bool hotkey_debug); |
39 | 43 |
40 // True if check for promo needs to be done, otherwise ignore it for the | 44 // True if check for promo needs to be done, otherwise ignore it for the |
41 // current session. | 45 // current session. |
42 bool check_for_promo_; | 46 bool check_for_promo_; |
43 | 47 |
44 // Factory for delaying showing promo notification. | 48 // Factory for delaying showing promo notification. |
45 base::WeakPtrFactory<DataPromoNotification> weak_ptr_factory_; | 49 base::WeakPtrFactory<DataPromoNotification> weak_ptr_factory_; |
46 | 50 |
47 DISALLOW_COPY_AND_ASSIGN(DataPromoNotification); | 51 DISALLOW_COPY_AND_ASSIGN(DataPromoNotification); |
48 }; | 52 }; |
49 | 53 |
50 } // namespace chromeos | 54 } // namespace chromeos |
51 | 55 |
52 #endif // CHROME_BROWSER_CHROMEOS_STATUS_DATA_PROMO_NOTIFICATION_H_ | 56 #endif // CHROME_BROWSER_CHROMEOS_STATUS_DATA_PROMO_NOTIFICATION_H_ |
OLD | NEW |