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

Side by Side Diff: content/browser/renderer_host/render_message_filter.h

Issue 297973002: Navigation transitions: Block first response until after transitions have run. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 6 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
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_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
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
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_
OLDNEW
« no previous file with comments | « content/browser/loader/resource_dispatcher_host_impl.cc ('k') | content/browser/renderer_host/render_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698