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

Unified Diff: content/browser/browser_plugin/test_browser_plugin_guest.cc

Issue 18339006: Rename RenderViewGone IPC/methods to better reflect reality (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixes for reviews by creis@ and palmer@. Created 7 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/browser_plugin/test_browser_plugin_guest.cc
diff --git a/content/browser/browser_plugin/test_browser_plugin_guest.cc b/content/browser/browser_plugin/test_browser_plugin_guest.cc
index 5a8149f1f201789e2cfbfff5a5f0cf0eee3c1c9e..4039ec82fb1c4b9e2585fa2cf1dee2f40a91ba3d 100644
--- a/content/browser/browser_plugin/test_browser_plugin_guest.cc
+++ b/content/browser/browser_plugin/test_browser_plugin_guest.cc
@@ -104,14 +104,14 @@ void TestBrowserPluginGuest::WaitForDamageBufferWithSize(
damage_buffer_message_loop_runner_->Run();
}
-void TestBrowserPluginGuest::RenderViewGone(base::TerminationStatus status) {
+void TestBrowserPluginGuest::RenderProcessGone(base::TerminationStatus status) {
exit_observed_ = true;
if (status != base::TERMINATION_STATUS_NORMAL_TERMINATION &&
status != base::TERMINATION_STATUS_STILL_RUNNING)
LOG(INFO) << "Guest crashed status: " << status;
if (crash_message_loop_runner_.get())
crash_message_loop_runner_->Quit();
- BrowserPluginGuest::RenderViewGone(status);
+ BrowserPluginGuest::RenderProcessGone(status);
}
void TestBrowserPluginGuest::OnHandleInputEvent(
« no previous file with comments | « content/browser/browser_plugin/test_browser_plugin_guest.h ('k') | content/browser/devtools/devtools_frontend_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698