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

Unified Diff: chrome/browser/chromeos/net/wake_on_wifi_manager.h

Issue 811973002: Enable lucid sleep (wake on wi-fi SSID) and add to Privacy options. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/net/wake_on_wifi_manager.h
diff --git a/chrome/browser/chromeos/net/wake_on_wifi_manager.h b/chrome/browser/chromeos/net/wake_on_wifi_manager.h
index 1b68c3c27b50a3765486cc5ccb3ef06179e90f3f..e009f0098ab64295394e589e52a0924c54b47a66 100644
--- a/chrome/browser/chromeos/net/wake_on_wifi_manager.h
+++ b/chrome/browser/chromeos/net/wake_on_wifi_manager.h
@@ -23,11 +23,11 @@ namespace chromeos {
class WakeOnWifiManager : public content::NotificationObserver {
public:
enum WakeOnWifiFeature {
- WAKE_ON_NONE = 0,
- WAKE_ON_PACKET = 1,
- WAKE_ON_SSID = 2,
- WAKE_ON_PACKET_AND_SSID = 3,
- INVALID = 4,
+ WAKE_ON_NONE = 0x00,
+ WAKE_ON_PACKET = 0x01,
+ WAKE_ON_SSID = 0x02,
+ WAKE_ON_PACKET_AND_SSID = 0x03,
+ INVALID = 0x04,
};
static WakeOnWifiManager* Get();

Powered by Google App Engine
This is Rietveld 408576698