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
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_CHROMEOS_STATUS_DATA_PROMO_NOTIFICATION_H_
6 #define CHROME_BROWSER_CHROMEOS_STATUS_DATA_PROMO_NOTIFICATION_H_
8 #include "base/basictypes.h"
9 #include "base/memory/weak_ptr.h"
10 #include "chromeos/network/network_state_handler_observer.h"
12 class PrefRegistrySimple
;
20 // This class is responsible for triggering cellular network related
21 // notifications, specifically:
22 // * "Chrome will use mobile data..." when Cellular is the Default network
23 // for the first time.
24 // * Data Promotion notifications when available / appropriate.
25 class DataPromoNotification
: public NetworkStateHandlerObserver
{
27 DataPromoNotification();
28 virtual ~DataPromoNotification();
30 static void RegisterPrefs(PrefRegistrySimple
* registry
);
33 // NetworkStateHandlerObserver
34 virtual void NetworkPropertiesUpdated(const NetworkState
* network
) OVERRIDE
;
35 virtual void DefaultNetworkChanged(const NetworkState
* network
) OVERRIDE
;
37 // Shows 3G promo notification if needed.
38 void ShowOptionalMobileDataPromoNotification();
40 // True if check for promo needs to be done, otherwise ignore it for the
42 bool check_for_promo_
;
44 // Factory for delaying showing promo notification.
45 base::WeakPtrFactory
<DataPromoNotification
> weak_ptr_factory_
;
47 DISALLOW_COPY_AND_ASSIGN(DataPromoNotification
);
50 } // namespace chromeos
52 #endif // CHROME_BROWSER_CHROMEOS_STATUS_DATA_PROMO_NOTIFICATION_H_