Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(917)

Side by Side Diff: Source/modules/webmidi/MIDIAccessPromise.h

Issue 135653002: Update modules classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove change to web/ Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/modules/webmidi/MIDIAccess.h ('k') | Source/modules/webmidi/MIDIAccessor.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/modules/webmidi/MIDIAccess.h ('k') | Source/modules/webmidi/MIDIAccessor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698