| 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 30 matching lines...) Expand all Loading... |
| 41 namespace WebCore { | 41 namespace WebCore { |
| 42 | 42 |
| 43 class DOMError; | 43 class DOMError; |
| 44 class MIDIAccess; | 44 class MIDIAccess; |
| 45 class MIDIErrorCallback; | 45 class MIDIErrorCallback; |
| 46 class MIDISuccessCallback; | 46 class MIDISuccessCallback; |
| 47 class ExecutionContext; | 47 class ExecutionContext; |
| 48 | 48 |
| 49 struct MIDIOptions; | 49 struct MIDIOptions; |
| 50 | 50 |
| 51 class MIDIAccessPromise : public RefCounted<MIDIAccessPromise>, public ScriptWra
ppable, public ActiveDOMObject { | 51 class MIDIAccessPromise FINAL : public RefCounted<MIDIAccessPromise>, public Scr
iptWrappable, public ActiveDOMObject { |
| 52 public: | 52 public: |
| 53 static PassRefPtr<MIDIAccessPromise> create(ExecutionContext*, const Diction
ary&); | 53 static PassRefPtr<MIDIAccessPromise> create(ExecutionContext*, const Diction
ary&); |
| 54 virtual ~MIDIAccessPromise(); | 54 virtual ~MIDIAccessPromise(); |
| 55 | 55 |
| 56 // ActiveDOMObject | 56 // ActiveDOMObject |
| 57 virtual bool hasPendingActivity() const OVERRIDE; | 57 virtual bool hasPendingActivity() const OVERRIDE; |
| 58 virtual void stop() OVERRIDE; | 58 virtual void stop() OVERRIDE; |
| 59 | 59 |
| 60 MIDIOptions* options() { return m_options.get(); } | 60 MIDIOptions* options() { return m_options.get(); } |
| 61 | 61 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 80 OwnPtr<MIDISuccessCallback> m_successCallback; | 80 OwnPtr<MIDISuccessCallback> m_successCallback; |
| 81 OwnPtr<MIDIErrorCallback> m_errorCallback; | 81 OwnPtr<MIDIErrorCallback> m_errorCallback; |
| 82 OwnPtr<MIDIOptions> m_options; | 82 OwnPtr<MIDIOptions> m_options; |
| 83 RefPtr<DOMError> m_error; | 83 RefPtr<DOMError> m_error; |
| 84 RefPtr<MIDIAccess> m_access; | 84 RefPtr<MIDIAccess> m_access; |
| 85 }; | 85 }; |
| 86 | 86 |
| 87 } // namespace WebCore | 87 } // namespace WebCore |
| 88 | 88 |
| 89 #endif // MIDIAccessPromise_h | 89 #endif // MIDIAccessPromise_h |
| OLD | NEW |