| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/webusb/NavigatorUSB.h" | 5 #include "modules/webusb/NavigatorUSB.h" |
| 6 | 6 |
| 7 #include "core/frame/Navigator.h" | 7 #include "core/frame/Navigator.h" |
| 8 #include "modules/webusb/USB.h" | 8 #include "modules/webusb/USB.h" |
| 9 | 9 |
| 10 namespace blink { | 10 namespace blink { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 USB* NavigatorUSB::usb() { | 26 USB* NavigatorUSB::usb() { |
| 27 return m_usb; | 27 return m_usb; |
| 28 } | 28 } |
| 29 | 29 |
| 30 DEFINE_TRACE(NavigatorUSB) { | 30 DEFINE_TRACE(NavigatorUSB) { |
| 31 visitor->trace(m_usb); | 31 visitor->trace(m_usb); |
| 32 Supplement<Navigator>::trace(visitor); | 32 Supplement<Navigator>::trace(visitor); |
| 33 } | 33 } |
| 34 | 34 |
| 35 NavigatorUSB::NavigatorUSB(Navigator& navigator) | 35 NavigatorUSB::NavigatorUSB(Navigator& navigator) { |
| 36 : Supplement<Navigator>(navigator) { | |
| 37 if (navigator.frame()) | 36 if (navigator.frame()) |
| 38 m_usb = USB::create(*navigator.frame()); | 37 m_usb = USB::create(*navigator.frame()); |
| 39 } | 38 } |
| 40 | 39 |
| 41 const char* NavigatorUSB::supplementName() { | 40 const char* NavigatorUSB::supplementName() { |
| 42 return "NavigatorUSB"; | 41 return "NavigatorUSB"; |
| 43 } | 42 } |
| 44 | 43 |
| 45 } // namespace blink | 44 } // namespace blink |
| OLD | NEW |