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

Side by Side Diff: content/renderer/renderer_blink_platform_impl.h

Issue 1311853005: RTCCertificate and RTCPeerConnection.generateCertificate added to JavaScript (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Chromium implementation of Blink interfaces. Addressed comments. Created 5 years, 2 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
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 #ifndef CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/id_map.h" 9 #include "base/id_map.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 blink::WebAudioBus* destination_bus, const char* audio_file_data, 127 blink::WebAudioBus* destination_bus, const char* audio_file_data,
128 size_t data_size); 128 size_t data_size);
129 129
130 virtual blink::WebMIDIAccessor* 130 virtual blink::WebMIDIAccessor*
131 createMIDIAccessor(blink::WebMIDIAccessorClient* client); 131 createMIDIAccessor(blink::WebMIDIAccessorClient* client);
132 132
133 virtual blink::WebBlobRegistry* blobRegistry(); 133 virtual blink::WebBlobRegistry* blobRegistry();
134 virtual void sampleGamepads(blink::WebGamepads&); 134 virtual void sampleGamepads(blink::WebGamepads&);
135 virtual blink::WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler( 135 virtual blink::WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler(
136 blink::WebRTCPeerConnectionHandlerClient* client); 136 blink::WebRTCPeerConnectionHandlerClient* client);
137 blink::WebRTCCertificateGenerator* createRTCCertificateGenerator() override;
137 virtual blink::WebMediaRecorderHandler* createMediaRecorderHandler(); 138 virtual blink::WebMediaRecorderHandler* createMediaRecorderHandler();
138 virtual blink::WebMediaStreamCenter* createMediaStreamCenter( 139 virtual blink::WebMediaStreamCenter* createMediaStreamCenter(
139 blink::WebMediaStreamCenterClient* client); 140 blink::WebMediaStreamCenterClient* client);
140 virtual bool processMemorySizesInBytes( 141 virtual bool processMemorySizesInBytes(
141 size_t* private_bytes, size_t* shared_bytes); 142 size_t* private_bytes, size_t* shared_bytes);
142 virtual blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( 143 virtual blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D(
143 const blink::WebGraphicsContext3D::Attributes& attributes); 144 const blink::WebGraphicsContext3D::Attributes& attributes);
144 virtual blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( 145 virtual blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D(
145 const blink::WebGraphicsContext3D::Attributes& attributes, 146 const blink::WebGraphicsContext3D::Attributes& attributes,
146 blink::WebGraphicsContext3D* share_context); 147 blink::WebGraphicsContext3D* share_context);
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 device::VibrationManagerPtr vibration_manager_; 267 device::VibrationManagerPtr vibration_manager_;
267 268
268 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; 269 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_;
269 270
270 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); 271 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl);
271 }; 272 };
272 273
273 } // namespace content 274 } // namespace content
274 275
275 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 276 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/media/rtc_peer_connection_handler.cc ('k') | content/renderer/renderer_blink_platform_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698