| 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_BROWSER_RENDERER_HOST_RENDER_MESSAGE_FILTER_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_MESSAGE_FILTER_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_MESSAGE_FILTER_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_MESSAGE_FILTER_H_ |
| 7 | 7 |
| 8 #if defined(OS_WIN) | 8 #if defined(OS_WIN) |
| 9 #include <windows.h> | 9 #include <windows.h> |
| 10 #endif | 10 #endif |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 void OnDidLose3DContext(const GURL& top_origin_url, | 263 void OnDidLose3DContext(const GURL& top_origin_url, |
| 264 ThreeDAPIType context_type, | 264 ThreeDAPIType context_type, |
| 265 int arb_robustness_status_code); | 265 int arb_robustness_status_code); |
| 266 | 266 |
| 267 #if defined(OS_ANDROID) | 267 #if defined(OS_ANDROID) |
| 268 void OnWebAudioMediaCodec(base::SharedMemoryHandle encoded_data_handle, | 268 void OnWebAudioMediaCodec(base::SharedMemoryHandle encoded_data_handle, |
| 269 base::FileDescriptor pcm_output, | 269 base::FileDescriptor pcm_output, |
| 270 uint32_t data_size); | 270 uint32_t data_size); |
| 271 #endif | 271 #endif |
| 272 | 272 |
| 273 void OnSetHasPendingTransitionRequest(int render_frame_id, |
| 274 bool is_transition); |
| 275 |
| 273 // Cached resource request dispatcher host and plugin service, guaranteed to | 276 // Cached resource request dispatcher host and plugin service, guaranteed to |
| 274 // be non-null if Init succeeds. We do not own the objects, they are managed | 277 // be non-null if Init succeeds. We do not own the objects, they are managed |
| 275 // by the BrowserProcess, which has a wider scope than we do. | 278 // by the BrowserProcess, which has a wider scope than we do. |
| 276 ResourceDispatcherHostImpl* resource_dispatcher_host_; | 279 ResourceDispatcherHostImpl* resource_dispatcher_host_; |
| 277 PluginServiceImpl* plugin_service_; | 280 PluginServiceImpl* plugin_service_; |
| 278 base::FilePath profile_data_directory_; | 281 base::FilePath profile_data_directory_; |
| 279 | 282 |
| 280 // Contextual information to be used for requests created here. | 283 // Contextual information to be used for requests created here. |
| 281 scoped_refptr<net::URLRequestContextGetter> request_context_; | 284 scoped_refptr<net::URLRequestContextGetter> request_context_; |
| 282 | 285 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 307 | 310 |
| 308 media::AudioManager* audio_manager_; | 311 media::AudioManager* audio_manager_; |
| 309 MediaInternals* media_internals_; | 312 MediaInternals* media_internals_; |
| 310 | 313 |
| 311 DISALLOW_COPY_AND_ASSIGN(RenderMessageFilter); | 314 DISALLOW_COPY_AND_ASSIGN(RenderMessageFilter); |
| 312 }; | 315 }; |
| 313 | 316 |
| 314 } // namespace content | 317 } // namespace content |
| 315 | 318 |
| 316 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_MESSAGE_FILTER_H_ | 319 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_MESSAGE_FILTER_H_ |
| OLD | NEW |