| Index: chrome/browser/ui/browser_dialogs.h
|
| diff --git a/chrome/browser/ui/browser_dialogs.h b/chrome/browser/ui/browser_dialogs.h
|
| index 9d5094c56ecfc30af8f076fe35e93184a71c2080..2d61db255f240fbc1841f71c4712916d28d944ad 100644
|
| --- a/chrome/browser/ui/browser_dialogs.h
|
| +++ b/chrome/browser/ui/browser_dialogs.h
|
| @@ -13,7 +13,6 @@ class Browser;
|
| class Profile;
|
| class SkBitmap;
|
| class TabContents;
|
| -typedef TabContents TabContentsWrapper;
|
| class TabModalConfirmDialogDelegate;
|
| class TemplateURL;
|
|
|
| @@ -55,7 +54,7 @@ gfx::NativeWindow ShowWebDialog(gfx::NativeWindow parent,
|
|
|
| // Shows the collected cookies dialog box.
|
| void ShowCollectedCookiesDialog(gfx::NativeWindow parent_window,
|
| - TabContentsWrapper* tab_contents);
|
| + TabContents* tab_contents);
|
|
|
| // Creates the ExtensionInstalledBubble and schedules it to be shown once
|
| // the extension has loaded. |extension| is the installed extension. |browser|
|
| @@ -74,7 +73,7 @@ void HideHungRendererDialog(content::WebContents* contents);
|
|
|
| // Shows a tab-modal dialog box.
|
| void ShowTabModalConfirmDialog(TabModalConfirmDialogDelegate* delegate,
|
| - TabContentsWrapper* wrapper);
|
| + TabContents* tab_contents);
|
|
|
| } // namespace browser
|
|
|
|
|