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

Side by Side Diff: content/public/test/mock_render_process_host.h

Issue 88503002: Have the unload event execute in background on cross-site navigations (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added unit tests Created 6 years, 11 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 | Annotate | Revision Log
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_PUBLIC_TEST_MOCK_RENDER_PROCESS_HOST_H_ 5 #ifndef CONTENT_PUBLIC_TEST_MOCK_RENDER_PROCESS_HOST_H_
6 #define CONTENT_PUBLIC_TEST_MOCK_RENDER_PROCESS_HOST_H_ 6 #define CONTENT_PUBLIC_TEST_MOCK_RENDER_PROCESS_HOST_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/memory/scoped_vector.h" 9 #include "base/memory/scoped_vector.h"
10 #include "base/observer_list.h" 10 #include "base/observer_list.h"
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 virtual IPC::ChannelProxy* GetChannel() OVERRIDE; 72 virtual IPC::ChannelProxy* GetChannel() OVERRIDE;
73 virtual void AddFilter(BrowserMessageFilter* filter) OVERRIDE; 73 virtual void AddFilter(BrowserMessageFilter* filter) OVERRIDE;
74 virtual bool FastShutdownForPageCount(size_t count) OVERRIDE; 74 virtual bool FastShutdownForPageCount(size_t count) OVERRIDE;
75 virtual base::TimeDelta GetChildProcessIdleTime() const OVERRIDE; 75 virtual base::TimeDelta GetChildProcessIdleTime() const OVERRIDE;
76 virtual void ResumeRequestsForView(int route_id) OVERRIDE; 76 virtual void ResumeRequestsForView(int route_id) OVERRIDE;
77 virtual void FilterURL(bool empty_allowed, GURL* url) OVERRIDE; 77 virtual void FilterURL(bool empty_allowed, GURL* url) OVERRIDE;
78 #if defined(ENABLE_WEBRTC) 78 #if defined(ENABLE_WEBRTC)
79 virtual void EnableAecDump(const base::FilePath& file) OVERRIDE; 79 virtual void EnableAecDump(const base::FilePath& file) OVERRIDE;
80 virtual void DisableAecDump() OVERRIDE; 80 virtual void DisableAecDump() OVERRIDE;
81 #endif 81 #endif
82 virtual void ResumeDeferredNavigation(const GlobalRequestID& request_id)
83 OVERRIDE;
82 84
83 // IPC::Sender via RenderProcessHost. 85 // IPC::Sender via RenderProcessHost.
84 virtual bool Send(IPC::Message* msg) OVERRIDE; 86 virtual bool Send(IPC::Message* msg) OVERRIDE;
85 87
86 // IPC::Listener via RenderProcessHost. 88 // IPC::Listener via RenderProcessHost.
87 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; 89 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
88 virtual void OnChannelConnected(int32 peer_pid) OVERRIDE; 90 virtual void OnChannelConnected(int32 peer_pid) OVERRIDE;
89 91
90 // Attaches the factory object so we can remove this object in its destructor 92 // Attaches the factory object so we can remove this object in its destructor
91 // and prevent MockRenderProcessHostFacotry from deleting it. 93 // and prevent MockRenderProcessHostFacotry from deleting it.
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 // for deleting all MockRenderProcessHosts that have not deleted by a test in 140 // for deleting all MockRenderProcessHosts that have not deleted by a test in
139 // the destructor and prevent them from being leaked. 141 // the destructor and prevent them from being leaked.
140 mutable ScopedVector<MockRenderProcessHost> processes_; 142 mutable ScopedVector<MockRenderProcessHost> processes_;
141 143
142 DISALLOW_COPY_AND_ASSIGN(MockRenderProcessHostFactory); 144 DISALLOW_COPY_AND_ASSIGN(MockRenderProcessHostFactory);
143 }; 145 };
144 146
145 } // namespace content 147 } // namespace content
146 148
147 #endif // CONTENT_PUBLIC_TEST_MOCK_RENDER_PROCESS_HOST_H_ 149 #endif // CONTENT_PUBLIC_TEST_MOCK_RENDER_PROCESS_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698