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

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.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: Changes from review. 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_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <queue> 9 #include <queue>
10 #include <string> 10 #include <string>
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 virtual bool FastShutdownStarted() const OVERRIDE; 120 virtual bool FastShutdownStarted() const OVERRIDE;
121 virtual base::TimeDelta GetChildProcessIdleTime() const OVERRIDE; 121 virtual base::TimeDelta GetChildProcessIdleTime() const OVERRIDE;
122 virtual void ResumeRequestsForView(int route_id) OVERRIDE; 122 virtual void ResumeRequestsForView(int route_id) OVERRIDE;
123 virtual void FilterURL(bool empty_allowed, GURL* url) OVERRIDE; 123 virtual void FilterURL(bool empty_allowed, GURL* url) OVERRIDE;
124 #if defined(ENABLE_WEBRTC) 124 #if defined(ENABLE_WEBRTC)
125 virtual void EnableAecDump(const base::FilePath& file) OVERRIDE; 125 virtual void EnableAecDump(const base::FilePath& file) OVERRIDE;
126 virtual void DisableAecDump() OVERRIDE; 126 virtual void DisableAecDump() OVERRIDE;
127 virtual void SetWebRtcLogMessageCallback( 127 virtual void SetWebRtcLogMessageCallback(
128 base::Callback<void(const std::string&)> callback) OVERRIDE; 128 base::Callback<void(const std::string&)> callback) OVERRIDE;
129 #endif 129 #endif
130 virtual void ResumeDeferredNavigation(const GlobalRequestID& request_id) 130 virtual void ResumeDeferredNavigation(const GlobalRequestID& request_id)
jam 2014/06/11 02:00:21 i think you copied the pattern for this one by put
shatch 2014/06/14 00:41:37 Done.
131 OVERRIDE; 131 OVERRIDE;
132 virtual void ResumeResponseDeferredAtStart(
133 const GlobalRequestID& request_id) OVERRIDE;
jam 2014/06/11 02:00:21 this isn't overridding a method from the interface
shatch 2014/06/14 00:41:37 Done.
132 virtual void NotifyTimezoneChange() OVERRIDE; 134 virtual void NotifyTimezoneChange() OVERRIDE;
133 135
134 // IPC::Sender via RenderProcessHost. 136 // IPC::Sender via RenderProcessHost.
135 virtual bool Send(IPC::Message* msg) OVERRIDE; 137 virtual bool Send(IPC::Message* msg) OVERRIDE;
136 138
137 // IPC::Listener via RenderProcessHost. 139 // IPC::Listener via RenderProcessHost.
138 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; 140 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
139 virtual void OnChannelConnected(int32 peer_pid) OVERRIDE; 141 virtual void OnChannelConnected(int32 peer_pid) OVERRIDE;
140 virtual void OnChannelError() OVERRIDE; 142 virtual void OnChannelError() OVERRIDE;
141 virtual void OnBadMessageReceived(const IPC::Message& message) OVERRIDE; 143 virtual void OnBadMessageReceived(const IPC::Message& message) OVERRIDE;
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
424 base::TimeTicks survive_for_worker_start_time_; 426 base::TimeTicks survive_for_worker_start_time_;
425 427
426 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; 428 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_;
427 429
428 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); 430 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl);
429 }; 431 };
430 432
431 } // namespace content 433 } // namespace content
432 434
433 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ 435 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698