1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_BROWSER_MEDIA_MIDI_DISPATCHER_HOST_H_
6 #define CONTENT_BROWSER_MEDIA_MIDI_DISPATCHER_HOST_H_
10 #include "base/callback_forward.h"
11 #include "base/memory/weak_ptr.h"
12 #include "content/public/browser/web_contents_observer.h"
18 // MidiDispatcherHost handles permissions for using system exclusive messages.
19 class MidiDispatcherHost
: public WebContentsObserver
{
21 explicit MidiDispatcherHost(WebContents
* web_contents
);
22 ~MidiDispatcherHost() override
;
24 // WebContentsObserver implementation.
25 void RenderFrameDeleted(RenderFrameHost
* render_frame_host
) override
;
26 void DidNavigateAnyFrame(RenderFrameHost
* render_frame_host
,
27 const LoadCommittedDetails
& details
,
28 const FrameNavigateParams
& params
) override
;
29 bool OnMessageReceived(const IPC::Message
& message
,
30 RenderFrameHost
* render_frame_host
) override
;
33 void OnRequestSysExPermission(RenderFrameHost
* render_frame_host
,
37 void OnCancelSysExPermissionRequest(RenderFrameHost
* render_frame_host
,
39 const GURL
& requesting_frame
);
40 void WasSysExPermissionGranted(int render_process_id
,
44 void CancelPermissionRequestsForFrame(RenderFrameHost
* render_frame_host
);
46 struct PendingPermission
{
47 PendingPermission(int render_process_id
,
51 int render_process_id
;
55 std::vector
<PendingPermission
> pending_permissions_
;
57 base::WeakPtrFactory
<MidiDispatcherHost
> weak_factory_
;
59 DISALLOW_COPY_AND_ASSIGN(MidiDispatcherHost
);
62 } // namespace content
64 #endif // CONTENT_BROWSER_MEDIA_MIDI_DISPATCHER_HOST_H_