diff options
Diffstat (limited to 'WebCore/page/Connection.h')
-rw-r--r-- | WebCore/page/Connection.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/WebCore/page/Connection.h b/WebCore/page/Connection.h index 837a36f..f32a36c 100644 --- a/WebCore/page/Connection.h +++ b/WebCore/page/Connection.h @@ -34,11 +34,11 @@ namespace WebCore { class Connection : public RefCounted<Connection> { public: enum ConnectionType { - Unknown = 0, - Ethernet = 1, - WiFi = 2, - Cell_2G = 3, - Cell_3G = 4, + UNKNOWN = 0, + ETHERNET = 1, + WIFI = 2, + CELL_2G = 3, + CELL_3G = 4, }; static PassRefPtr<Connection> create() { return adoptRef(new Connection()); } |