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

Unified Diff: chrome/browser/ui/views/create_application_shortcut_view.h

Issue 10540100: TabContentsWrapper -> TabContents, part 48. (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/views/create_application_shortcut_view.h
diff --git a/chrome/browser/ui/views/create_application_shortcut_view.h b/chrome/browser/ui/views/create_application_shortcut_view.h
index 1b2648fdaa82b575c9034ff33326c2dc920e2ac0..e61e3e04c91d68f7ae4bb620952f651a90a9b5f7 100644
--- a/chrome/browser/ui/views/create_application_shortcut_view.h
+++ b/chrome/browser/ui/views/create_application_shortcut_view.h
@@ -17,7 +17,6 @@
class Profile;
class TabContents;
-typedef TabContents TabContentsWrapper;
class SkBitmap;
namespace extensions {
@@ -83,7 +82,7 @@ class CreateApplicationShortcutView : public views::DialogDelegateView,
// Create an application shortcut pointing to a URL.
class CreateUrlApplicationShortcutView : public CreateApplicationShortcutView {
public:
- explicit CreateUrlApplicationShortcutView(TabContentsWrapper* tab_contents);
+ explicit CreateUrlApplicationShortcutView(TabContents* tab_contents);
virtual ~CreateUrlApplicationShortcutView();
virtual bool Accept() OVERRIDE;
@@ -97,7 +96,7 @@ class CreateUrlApplicationShortcutView : public CreateApplicationShortcutView {
void OnIconDownloaded(bool errored, const SkBitmap& image);
// The tab whose URL is being turned into an app.
- TabContentsWrapper* tab_contents_;
+ TabContents* tab_contents_;
// Pending app icon download tracked by us.
class IconDownloadCallbackFunctor;

Powered by Google App Engine
This is Rietveld 408576698