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

Side by Side Diff: content/renderer/renderer_webkitplatformsupport_impl.cc

Issue 16025005: Web MIDI API back-end (work-in-progress) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use int64 in ParamTraits Created 7 years, 6 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/renderer/renderer_webkitplatformsupport_impl.h" 5 #include "content/renderer/renderer_webkitplatformsupport_impl.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/files/file_path.h" 8 #include "base/files/file_path.h"
9 #include "base/lazy_instance.h" 9 #include "base/lazy_instance.h"
10 #include "base/metrics/histogram.h" 10 #include "base/metrics/histogram.h"
(...skipping 13 matching lines...) Expand all
24 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" 24 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h"
25 #include "content/common/mime_registry_messages.h" 25 #include "content/common/mime_registry_messages.h"
26 #include "content/common/view_messages.h" 26 #include "content/common/view_messages.h"
27 #include "content/public/common/content_switches.h" 27 #include "content/public/common/content_switches.h"
28 #include "content/public/renderer/content_renderer_client.h" 28 #include "content/public/renderer/content_renderer_client.h"
29 #include "content/renderer/dom_storage/webstoragenamespace_impl.h" 29 #include "content/renderer/dom_storage/webstoragenamespace_impl.h"
30 #include "content/renderer/gamepad_shared_memory_reader.h" 30 #include "content/renderer/gamepad_shared_memory_reader.h"
31 #include "content/renderer/hyphenator/hyphenator.h" 31 #include "content/renderer/hyphenator/hyphenator.h"
32 #include "content/renderer/media/media_stream_dependency_factory.h" 32 #include "content/renderer/media/media_stream_dependency_factory.h"
33 #include "content/renderer/media/renderer_webaudiodevice_impl.h" 33 #include "content/renderer/media/renderer_webaudiodevice_impl.h"
34
35 #include "content/renderer/media/renderer_webmidiaccessor_impl.h"
36
scherkus (not reviewing) 2013/06/12 01:28:47 remove extra blanks
Chris Rogers 2013/06/12 20:34:35 Done.
37
34 #include "content/renderer/render_thread_impl.h" 38 #include "content/renderer/render_thread_impl.h"
35 #include "content/renderer/renderer_clipboard_client.h" 39 #include "content/renderer/renderer_clipboard_client.h"
36 #include "content/renderer/websharedworkerrepository_impl.h" 40 #include "content/renderer/websharedworkerrepository_impl.h"
37 #include "googleurl/src/gurl.h" 41 #include "googleurl/src/gurl.h"
38 #include "gpu/config/gpu_info.h" 42 #include "gpu/config/gpu_info.h"
39 #include "ipc/ipc_sync_message_filter.h" 43 #include "ipc/ipc_sync_message_filter.h"
40 #include "media/audio/audio_output_device.h" 44 #include "media/audio/audio_output_device.h"
41 #include "media/base/audio_hardware_config.h" 45 #include "media/base/audio_hardware_config.h"
42 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" 46 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
43 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRuntimeFeatures.h" 47 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRuntimeFeatures.h"
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 #include "base/file_descriptor_posix.h" 85 #include "base/file_descriptor_posix.h"
82 #endif 86 #endif
83 87
84 using WebKit::WebAudioDevice; 88 using WebKit::WebAudioDevice;
85 using WebKit::WebBlobRegistry; 89 using WebKit::WebBlobRegistry;
86 using WebKit::WebFileInfo; 90 using WebKit::WebFileInfo;
87 using WebKit::WebFileSystem; 91 using WebKit::WebFileSystem;
88 using WebKit::WebFrame; 92 using WebKit::WebFrame;
89 using WebKit::WebGamepads; 93 using WebKit::WebGamepads;
90 using WebKit::WebIDBFactory; 94 using WebKit::WebIDBFactory;
95 using WebKit::WebMIDIAccessor;
91 using WebKit::Platform; 96 using WebKit::Platform;
92 using WebKit::WebMediaStreamCenter; 97 using WebKit::WebMediaStreamCenter;
93 using WebKit::WebMediaStreamCenterClient; 98 using WebKit::WebMediaStreamCenterClient;
94 using WebKit::WebRTCPeerConnectionHandler; 99 using WebKit::WebRTCPeerConnectionHandler;
95 using WebKit::WebRTCPeerConnectionHandlerClient; 100 using WebKit::WebRTCPeerConnectionHandlerClient;
96 using WebKit::WebStorageNamespace; 101 using WebKit::WebStorageNamespace;
97 using WebKit::WebString; 102 using WebKit::WebString;
98 using WebKit::WebURL; 103 using WebKit::WebURL;
99 using WebKit::WebVector; 104 using WebKit::WebVector;
100 105
(...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after
724 media::AudioParameters params( 729 media::AudioParameters params(
725 media::AudioParameters::AUDIO_PCM_LOW_LATENCY, 730 media::AudioParameters::AUDIO_PCM_LOW_LATENCY,
726 layout, input_channels, 731 layout, input_channels,
727 static_cast<int>(sample_rate), 16, buffer_size); 732 static_cast<int>(sample_rate), 16, buffer_size);
728 733
729 return new RendererWebAudioDeviceImpl(params, callback, session_id); 734 return new RendererWebAudioDeviceImpl(params, callback, session_id);
730 } 735 }
731 736
732 //------------------------------------------------------------------------------ 737 //------------------------------------------------------------------------------
733 738
739 WebKit::WebMIDIAccessor*
740 RendererWebKitPlatformSupportImpl::createMIDIAccessor(
741 WebKit::WebMIDIAccessor::Client* client) {
742 return new RendererWebMIDIAccessorImpl(client);
743 }
744
745 //------------------------------------------------------------------------------
746
734 WebKit::WebString 747 WebKit::WebString
735 RendererWebKitPlatformSupportImpl::signedPublicKeyAndChallengeString( 748 RendererWebKitPlatformSupportImpl::signedPublicKeyAndChallengeString(
736 unsigned key_size_index, 749 unsigned key_size_index,
737 const WebKit::WebString& challenge, 750 const WebKit::WebString& challenge,
738 const WebKit::WebURL& url) { 751 const WebKit::WebURL& url) {
739 std::string signed_public_key; 752 std::string signed_public_key;
740 RenderThread::Get()->Send(new ViewHostMsg_Keygen( 753 RenderThread::Get()->Send(new ViewHostMsg_Keygen(
741 static_cast<uint32>(key_size_index), 754 static_cast<uint32>(key_size_index),
742 challenge.utf8(), 755 challenge.utf8(),
743 GURL(url), 756 GURL(url),
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
897 } 910 }
898 911
899 //------------------------------------------------------------------------------ 912 //------------------------------------------------------------------------------
900 913
901 WebKit::WebCompositorSupport* 914 WebKit::WebCompositorSupport*
902 RendererWebKitPlatformSupportImpl::compositorSupport() { 915 RendererWebKitPlatformSupportImpl::compositorSupport() {
903 return &compositor_support_; 916 return &compositor_support_;
904 } 917 }
905 918
906 } // namespace content 919 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698