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

Side by Side Diff: chrome/browser/chromeos/status/data_promo_notification.h

Issue 1022333002: Initial CL for Data Saver (Flywheel) prompt when cellular network detected (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add command line flags to histograms.xml Created 5 years, 8 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
OLDNEW
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 19 matching lines...) Expand all
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.
38 void ShowOptionalMobileDataPromoNotification(); 38 void ShowOptionalMobileDataPromoNotification();
39 39
40 // True if check for promo needs to be done, otherwise ignore it for the 40 // Show notification prompting user to install Data Saver extension.
41 // current session. 41 bool ShowDataSaverNotification();
42 bool check_for_promo_; 42
43 // True if we've shown notifications during this session, or won't need to.
44 bool notifications_shown_;
43 45
44 // Factory for delaying showing promo notification. 46 // Factory for delaying showing promo notification.
45 base::WeakPtrFactory<DataPromoNotification> weak_ptr_factory_; 47 base::WeakPtrFactory<DataPromoNotification> weak_ptr_factory_;
46 48
47 DISALLOW_COPY_AND_ASSIGN(DataPromoNotification); 49 DISALLOW_COPY_AND_ASSIGN(DataPromoNotification);
48 }; 50 };
49 51
50 } // namespace chromeos 52 } // namespace chromeos
51 53
52 #endif // CHROME_BROWSER_CHROMEOS_STATUS_DATA_PROMO_NOTIFICATION_H_ 54 #endif // CHROME_BROWSER_CHROMEOS_STATUS_DATA_PROMO_NOTIFICATION_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/preferences.cc ('k') | chrome/browser/chromeos/status/data_promo_notification.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698