| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 WebMIDIPermissionRequest::WebMIDIPermissionRequest(const PassRefPtr<WebCore::MID
IAccess>& midi) | 43 WebMIDIPermissionRequest::WebMIDIPermissionRequest(const PassRefPtr<WebCore::MID
IAccess>& midi) |
| 44 : m_private(midi) | 44 : m_private(midi) |
| 45 { | 45 { |
| 46 } | 46 } |
| 47 | 47 |
| 48 WebMIDIPermissionRequest::WebMIDIPermissionRequest(WebCore::MIDIAccess* midi) | 48 WebMIDIPermissionRequest::WebMIDIPermissionRequest(WebCore::MIDIAccess* midi) |
| 49 : m_private(midi) | 49 : m_private(midi) |
| 50 { | 50 { |
| 51 } | 51 } |
| 52 | 52 |
| 53 void WebMIDIPermissionRequest::assign(const WebMIDIPermissionRequest& other) |
| 54 { |
| 55 m_private = other.m_private; |
| 56 } |
| 57 |
| 58 bool WebMIDIPermissionRequest::equals(const WebMIDIPermissionRequest& n) const |
| 59 { |
| 60 return m_private.get() == n.m_private.get(); |
| 61 } |
| 62 |
| 53 WebSecurityOrigin WebMIDIPermissionRequest::securityOrigin() const | 63 WebSecurityOrigin WebMIDIPermissionRequest::securityOrigin() const |
| 54 { | 64 { |
| 55 return WebSecurityOrigin(m_private->scriptExecutionContext()->securityOrigin
()); | 65 return WebSecurityOrigin(m_private->scriptExecutionContext()->securityOrigin
()); |
| 56 } | 66 } |
| 57 | 67 |
| 58 void WebMIDIPermissionRequest::setIsAllowed(bool allowed) | 68 void WebMIDIPermissionRequest::setIsAllowed(bool allowed) |
| 59 { | 69 { |
| 60 m_private->enableSysEx(allowed); | 70 m_private->enableSysEx(allowed); |
| 61 } | 71 } |
| 62 | 72 |
| 63 } // namespace WebKit | 73 } // namespace WebKit |
| OLD | NEW |