| 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 20 matching lines...) Expand all Loading... |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 #include "public/web/WebMIDIPermissionRequest.h" | 32 #include "public/web/WebMIDIPermissionRequest.h" |
| 33 | 33 |
| 34 #include "modules/webmidi/MIDIAccessInitializer.h" | 34 #include "modules/webmidi/MIDIAccessInitializer.h" |
| 35 #include "platform/weborigin/SecurityOrigin.h" | 35 #include "platform/weborigin/SecurityOrigin.h" |
| 36 #include "public/platform/WebSecurityOrigin.h" | 36 #include "public/platform/WebSecurityOrigin.h" |
| 37 | 37 |
| 38 namespace blink { | 38 namespace blink { |
| 39 | 39 |
| 40 WebMIDIPermissionRequest::WebMIDIPermissionRequest(MIDIAccessInitializer* initia
lizer) | 40 WebMIDIPermissionRequest::WebMIDIPermissionRequest(MIDIAccessInitializer* initia
lizer) |
| 41 : m_initializer(initializer) | 41 : m_private(initializer) |
| 42 { | 42 { |
| 43 } | 43 } |
| 44 | 44 |
| 45 void WebMIDIPermissionRequest::reset() |
| 46 { |
| 47 m_private.reset(); |
| 48 } |
| 49 |
| 50 void WebMIDIPermissionRequest::assign(const WebMIDIPermissionRequest& other) |
| 51 { |
| 52 m_private = other.m_private; |
| 53 } |
| 54 |
| 45 bool WebMIDIPermissionRequest::equals(const WebMIDIPermissionRequest& n) const | 55 bool WebMIDIPermissionRequest::equals(const WebMIDIPermissionRequest& n) const |
| 46 { | 56 { |
| 47 return m_initializer == n.m_initializer; | 57 return m_private.get() == n.m_private.get(); |
| 48 } | 58 } |
| 49 | 59 |
| 50 WebSecurityOrigin WebMIDIPermissionRequest::securityOrigin() const | 60 WebSecurityOrigin WebMIDIPermissionRequest::securityOrigin() const |
| 51 { | 61 { |
| 52 return WebSecurityOrigin(m_initializer->securityOrigin()); | 62 return WebSecurityOrigin(m_private->securityOrigin()); |
| 53 } | 63 } |
| 54 | 64 |
| 55 void WebMIDIPermissionRequest::setIsAllowed(bool allowed) | 65 void WebMIDIPermissionRequest::setIsAllowed(bool allowed) |
| 56 { | 66 { |
| 57 m_initializer->resolveSysexPermission(allowed); | 67 m_private->resolveSysexPermission(allowed); |
| 58 } | 68 } |
| 59 | 69 |
| 60 } // namespace blink | 70 } // namespace blink |
| OLD | NEW |