| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "modules/netinfo/NetworkInformation.h" | 5 #include "modules/netinfo/NetworkInformation.h" |
| 6 | 6 |
| 7 #include "core/dom/ExecutionContext.h" | 7 #include "core/dom/ExecutionContext.h" |
| 8 #include "core/events/Event.h" | 8 #include "core/events/Event.h" |
| 9 #include "core/page/NetworkStateNotifier.h" | 9 #include "core/page/NetworkStateNotifier.h" |
| 10 #include "modules/EventTargetModules.h" | 10 #include "modules/EventTargetModules.h" |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 , ActiveDOMObject(context) | 163 , ActiveDOMObject(context) |
| 164 , m_type(networkStateNotifier().connectionType()) | 164 , m_type(networkStateNotifier().connectionType()) |
| 165 , m_downlinkMaxMbps(networkStateNotifier().maxBandwidth()) | 165 , m_downlinkMaxMbps(networkStateNotifier().maxBandwidth()) |
| 166 , m_observing(false) | 166 , m_observing(false) |
| 167 , m_contextStopped(false) | 167 , m_contextStopped(false) |
| 168 { | 168 { |
| 169 } | 169 } |
| 170 | 170 |
| 171 DEFINE_TRACE(NetworkInformation) | 171 DEFINE_TRACE(NetworkInformation) |
| 172 { | 172 { |
| 173 RefCountedGarbageCollectedEventTargetWithInlineData<NetworkInformation>::tra
ce(visitor); | 173 EventTargetWithInlineData::trace(visitor); |
| 174 ActiveDOMObject::trace(visitor); | 174 ActiveDOMObject::trace(visitor); |
| 175 } | 175 } |
| 176 | 176 |
| 177 } // namespace blink | 177 } // namespace blink |
| OLD | NEW |