Revert of Add button to add new FSP services to Files app. (patchset #8 id:140001...
[chromium-blink-merge.git] / chrome / browser / chromeos / status / data_promo_notification.h
blobdef5e8e6135d968df0063d2ecb1094e80f6ca2d6
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;
14 namespace views {
15 class View;
18 namespace chromeos {
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 {
26 public:
27 DataPromoNotification();
28 ~DataPromoNotification() override;
30 static void RegisterPrefs(PrefRegistrySimple* registry);
32 private:
33 // NetworkStateHandlerObserver
34 void NetworkPropertiesUpdated(const NetworkState* network) override;
35 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
41 // current session.
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_