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

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

Issue 1373023002: RTCCertificate, RTCPeerConnection.generateCertificate (WebRTC JavaScript) added. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed jochen's 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 const char* audio_file_data, 130 const char* audio_file_data,
131 size_t data_size) override; 131 size_t data_size) override;
132 132
133 blink::WebMIDIAccessor* createMIDIAccessor( 133 blink::WebMIDIAccessor* createMIDIAccessor(
134 blink::WebMIDIAccessorClient* client) override; 134 blink::WebMIDIAccessorClient* client) override;
135 135
136 blink::WebBlobRegistry* blobRegistry() override; 136 blink::WebBlobRegistry* blobRegistry() override;
137 void sampleGamepads(blink::WebGamepads&) override; 137 void sampleGamepads(blink::WebGamepads&) override;
138 blink::WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler( 138 blink::WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler(
139 blink::WebRTCPeerConnectionHandlerClient* client) override; 139 blink::WebRTCPeerConnectionHandlerClient* client) override;
140 blink::WebRTCCertificateGenerator* createRTCCertificateGenerator() override;
140 blink::WebMediaRecorderHandler* createMediaRecorderHandler() override; 141 blink::WebMediaRecorderHandler* createMediaRecorderHandler() override;
141 blink::WebMediaStreamCenter* createMediaStreamCenter( 142 blink::WebMediaStreamCenter* createMediaStreamCenter(
142 blink::WebMediaStreamCenterClient* client) override; 143 blink::WebMediaStreamCenterClient* client) override;
143 bool processMemorySizesInBytes(size_t* private_bytes, 144 bool processMemorySizesInBytes(size_t* private_bytes,
144 size_t* shared_bytes) override; 145 size_t* shared_bytes) override;
145 blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( 146 blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D(
146 const blink::WebGraphicsContext3D::Attributes& attributes) override; 147 const blink::WebGraphicsContext3D::Attributes& attributes) override;
147 blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( 148 blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D(
148 const blink::WebGraphicsContext3D::Attributes& attributes, 149 const blink::WebGraphicsContext3D::Attributes& attributes,
149 blink::WebGraphicsContext3D* share_context) override; 150 blink::WebGraphicsContext3D* share_context) override;
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 device::VibrationManagerPtr vibration_manager_; 274 device::VibrationManagerPtr vibration_manager_;
274 275
275 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; 276 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_;
276 277
277 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); 278 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl);
278 }; 279 };
279 280
280 } // namespace content 281 } // namespace content
281 282
282 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 283 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698