| Index: chrome/browser/ui/views/hung_renderer_view.cc
|
| diff --git a/chrome/browser/ui/views/hung_renderer_view.cc b/chrome/browser/ui/views/hung_renderer_view.cc
|
| index f7f9aa8ca978bdc67d2d8507b11f972dd030f727..aa05ac8f47dceb6ac4320bb0e3fd2342c1e57ec6 100644
|
| --- a/chrome/browser/ui/views/hung_renderer_view.cc
|
| +++ b/chrome/browser/ui/views/hung_renderer_view.cc
|
| @@ -554,7 +554,7 @@ static HungRendererDialogView* CreateHungRendererDialogView() {
|
|
|
| namespace browser {
|
|
|
| -void ShowHungRendererDialog(TabContents* contents) {
|
| +void ShowNativeHungRendererDialog(TabContents* contents) {
|
| if (!logging::DialogsAreSuppressed()) {
|
| if (!g_instance)
|
| g_instance = CreateHungRendererDialogView();
|
| @@ -562,7 +562,7 @@ void ShowHungRendererDialog(TabContents* contents) {
|
| }
|
| }
|
|
|
| -void HideHungRendererDialog(TabContents* contents) {
|
| +void HideNativeHungRendererDialog(TabContents* contents) {
|
| if (!logging::DialogsAreSuppressed() && g_instance)
|
| g_instance->EndForTabContents(contents);
|
| }
|
|
|