OLD | NEW |
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_RENDER_THREAD_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 // instances shared based on configured audio parameters. Lazily created on | 275 // instances shared based on configured audio parameters. Lazily created on |
276 // first call. | 276 // first call. |
277 AudioRendererMixerManager* GetAudioRendererMixerManager(); | 277 AudioRendererMixerManager* GetAudioRendererMixerManager(); |
278 | 278 |
279 // AudioHardwareConfig contains audio hardware configuration for | 279 // AudioHardwareConfig contains audio hardware configuration for |
280 // renderer side clients. Creation requires a synchronous IPC call so it is | 280 // renderer side clients. Creation requires a synchronous IPC call so it is |
281 // lazily created on the first call. | 281 // lazily created on the first call. |
282 media::AudioHardwareConfig* GetAudioHardwareConfig(); | 282 media::AudioHardwareConfig* GetAudioHardwareConfig(); |
283 | 283 |
284 #if defined(OS_WIN) | 284 #if defined(OS_WIN) |
285 void PreCacheFontCharacters(const LOGFONT& log_font, const string16& str); | 285 void PreCacheFontCharacters(const LOGFONT& log_font, |
| 286 const base::string16& str); |
286 #endif | 287 #endif |
287 | 288 |
288 #if defined(ENABLE_WEBRTC) | 289 #if defined(ENABLE_WEBRTC) |
289 WebRTCIdentityService* get_webrtc_identity_service() { | 290 WebRTCIdentityService* get_webrtc_identity_service() { |
290 return webrtc_identity_service_.get(); | 291 return webrtc_identity_service_.get(); |
291 } | 292 } |
292 #endif | 293 #endif |
293 | 294 |
294 // For producing custom V8 histograms. Custom histograms are produced if all | 295 // For producing custom V8 histograms. Custom histograms are produced if all |
295 // RenderViews share the same host, and the host is in the pre-specified set | 296 // RenderViews share the same host, and the host is in the pre-specified set |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
503 scoped_ptr<GamepadSharedMemoryReader> gamepad_shared_memory_reader_; | 504 scoped_ptr<GamepadSharedMemoryReader> gamepad_shared_memory_reader_; |
504 | 505 |
505 base::ProcessId renderer_process_id_; | 506 base::ProcessId renderer_process_id_; |
506 | 507 |
507 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 508 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
508 }; | 509 }; |
509 | 510 |
510 } // namespace content | 511 } // namespace content |
511 | 512 |
512 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 513 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
OLD | NEW |