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

Unified Diff: chrome/browser/ui/webui/constrained_web_dialog_delegate_base.h

Issue 10534098: TabContentsWrapper -> TabContents, part 51. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 6 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: chrome/browser/ui/webui/constrained_web_dialog_delegate_base.h
diff --git a/chrome/browser/ui/webui/constrained_web_dialog_delegate_base.h b/chrome/browser/ui/webui/constrained_web_dialog_delegate_base.h
index a06464f9264e40641faa7b76b78e74f5a910d6ae..d48d9e940dbbcb28f9d4b86b95b4c0b1ea347565 100644
--- a/chrome/browser/ui/webui/constrained_web_dialog_delegate_base.h
+++ b/chrome/browser/ui/webui/constrained_web_dialog_delegate_base.h
@@ -7,7 +7,7 @@
#pragma once
#include "base/memory/scoped_ptr.h"
-#include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
+#include "chrome/browser/ui/tab_contents/tab_contents.h"
#include "chrome/browser/ui/webui/web_dialog_web_contents_delegate.h"
#include "ui/web_dialogs/constrained_web_dialog_ui.h"
#include "ui/web_dialogs/web_dialog_ui.h"
@@ -37,7 +37,7 @@ class ConstrainedWebDialogDelegateBase
virtual void OnDialogCloseFromWebUI() OVERRIDE;
virtual void ReleaseTabContentsOnDialogClose() OVERRIDE;
virtual ConstrainedWindow* window() OVERRIDE;
- virtual TabContentsWrapper* tab() OVERRIDE;
+ virtual TabContents* tab() OVERRIDE;
// WebDialogWebContentsDelegate interface.
virtual void HandleKeyboardEvent(
@@ -54,7 +54,7 @@ class ConstrainedWebDialogDelegateBase
ConstrainedWindow* window_;
// Holds the HTML to display in the constrained dialog.
- scoped_ptr<TabContentsWrapper> tab_;
+ scoped_ptr<TabContents> tab_;
// Was the dialog closed from WebUI (in which case |web_dialog_delegate_|'s
// OnDialogClosed() method has already been called)?

Powered by Google App Engine
This is Rietveld 408576698