| Index: chrome/browser/ui/cocoa/hung_renderer_controller.mm
|
| diff --git a/chrome/browser/ui/cocoa/hung_renderer_controller.mm b/chrome/browser/ui/cocoa/hung_renderer_controller.mm
|
| index bab2472161a46a5385b21e8ceab3f3ba7106fbc5..397146dff282afcdc417da694437256468a0d58a 100644
|
| --- a/chrome/browser/ui/cocoa/hung_renderer_controller.mm
|
| +++ b/chrome/browser/ui/cocoa/hung_renderer_controller.mm
|
| @@ -215,7 +215,7 @@ class TabContentsObserverBridge : public TabContentsObserver {
|
|
|
| namespace browser {
|
|
|
| -void ShowHungRendererDialog(TabContents* contents) {
|
| +void ShowNativeHungRendererDialog(TabContents* contents) {
|
| if (!logging::DialogsAreSuppressed()) {
|
| if (!g_instance)
|
| g_instance = [[HungRendererController alloc]
|
| @@ -224,7 +224,7 @@ void ShowHungRendererDialog(TabContents* contents) {
|
| }
|
| }
|
|
|
| -void HideHungRendererDialog(TabContents* contents) {
|
| +void HideNativeHungRendererDialog(TabContents* contents) {
|
| if (!logging::DialogsAreSuppressed() && g_instance)
|
| [g_instance endForTabContents:contents];
|
| }
|
|
|