Chromium Code Reviews| Index: ui/web_dialogs/constrained_web_dialog_ui.h |
| =================================================================== |
| --- ui/web_dialogs/constrained_web_dialog_ui.h (revision 142088) |
| +++ ui/web_dialogs/constrained_web_dialog_ui.h (working copy) |
| @@ -13,7 +13,6 @@ |
| class ConstrainedWindow; |
| class Profile; |
| class TabContents; |
| -typedef TabContents TabContentsWrapper; |
| class WebDialogWebContentsDelegate; |
| namespace base { |
| @@ -44,8 +43,8 @@ |
| // Returns the ConstrainedWindow. |
| virtual ConstrainedWindow* window() = 0; |
|
Ben Goodger (Google)
2012/06/19 14:55:07
can you add a TODO here to fix these function name
jam
2012/06/19 15:13:28
Done.
|
| - // Returns the TabContentsWrapper owned by the constrained window. |
| - virtual TabContentsWrapper* tab() = 0; |
| + // Returns the TabContents owned by the constrained window. |
| + virtual TabContents* tab() = 0; |
| protected: |
| virtual ~ConstrainedWebDialogDelegate() {} |
| @@ -100,7 +99,7 @@ |
| Profile* profile, |
| WebDialogDelegate* delegate, |
| WebDialogWebContentsDelegate* tab_delegate, |
| - TabContentsWrapper* overshadowed); |
| + TabContents* overshadowed); |
| } // namespace ui |